类 DefaultFieldMatrixPreservingVisitor<T extends FieldElement<T>>
java.lang.Object
org.hipparchus.linear.DefaultFieldMatrixPreservingVisitor<T>
- 类型参数:
-
T
- 字段元素的类型
- 所有已实现的接口:
-
FieldMatrixPreservingVisitor<T>
public class DefaultFieldMatrixPreservingVisitor<T extends FieldElement<T>> extends Object implements FieldMatrixPreservingVisitor<T>
FieldMatrixPreservingVisitor接口的默认实现。
这个类是一个方便的方式来创建自定义访问者,而不需要定义所有方法。这个类提供了什么都不做的默认实现。
-
构造器概要
-
方法概要
-
构造器详细资料
-
DefaultFieldMatrixPreservingVisitor
创建一个新实例。- 参数:
-
zero
- 字段的加法单位元素
-
-
方法详细资料
-
start
public void start(int rows, int columns, int startRow, int endRow, int startColumn, int endColumn) 开始访问矩阵。这个方法在访问矩阵的任何条目之前调用一次。
- 指定者:
-
start
在接口中FieldMatrixPreservingVisitor<T extends FieldElement<T>>
- 参数:
-
rows
- 矩阵的行数 -
columns
- 矩阵的列数 -
startRow
- 初始行索引 -
endRow
- 最终行索引(包括) -
startColumn
- 初始列索引 -
endColumn
- 最终列索引(包括)
-
visit
访问一个矩阵条目。- 指定者:
-
visit
在接口中FieldMatrixPreservingVisitor<T extends FieldElement<T>>
- 参数:
-
row
- 条目的行索引 -
column
- 条目的列索引 -
value
- 条目的当前值
-
end
结束访问矩阵。这个方法在访问矩阵的所有条目之后调用一次。
- 指定者:
-
end
在接口中FieldMatrixPreservingVisitor<T extends FieldElement<T>>
- 返回:
-
walkInXxxOrder
必须返回的值
-