类 DefaultRealMatrixPreservingVisitor
java.lang.Object
org.hipparchus.linear.DefaultRealMatrixPreservingVisitor
- 所有已实现的接口:
-
RealMatrixPreservingVisitor
public class DefaultRealMatrixPreservingVisitor extends Object implements RealMatrixPreservingVisitor
RealMatrixPreservingVisitor
接口的默认实现。
这个类是为了创建自定义访问者而提供的便利,无需定义所有方法。该类提供了什么都不做的默认实现。
-
构造器概要
-
方法概要
-
构造器详细资料
-
DefaultRealMatrixPreservingVisitor
public DefaultRealMatrixPreservingVisitor()空构造函数。这个构造函数并非必需,但它可以防止在JDK 18及更高版本中出现不必要的javadoc警告。
- 从以下版本开始:
- 3.0
-
-
方法详细资料
-
start
public void start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) 开始访问矩阵。此方法在访问矩阵的任何条目之前调用一次。
- 指定者:
-
start
在接口中RealMatrixPreservingVisitor
- 参数:
-
rows
- 矩阵的行数 -
columns
- 矩阵的列数 -
startRow
- 初始行索引 -
endRow
- 最终行索引(包括) -
startColumn
- 初始列索引 -
endColumn
- 最终列索引(包括)
-
visit
public void visit(int row, int column, double value) 访问一个矩阵条目。- 指定者:
-
visit
在接口中RealMatrixPreservingVisitor
- 参数:
-
row
- 条目的行索引 -
column
- 条目的列索引 -
value
- 条目的当前值
-
end
public double end()结束访问矩阵。此方法在访问矩阵的所有条目后调用一次。
- 指定者:
-
end
在接口中RealMatrixPreservingVisitor
- 返回:
-
walkInXxxOrder
必须返回的值
-