|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectfigure.AbstractMatrix
public abstract class AbstractMatrix
行列の抽象スーパークラス
フィールドの概要 | |
---|---|
double |
dataMax
成分の絶対値の最大値 |
protected static double |
TOLERANCE
反復計算の収束判定閾値 |
コンストラクタの概要 | |
---|---|
protected |
AbstractMatrix()
|
メソッドの概要 | |
---|---|
protected void |
checkRange(int row,
int column)
データ範囲を確認する |
java.lang.Object |
clone()
オブジェクトのコピーを返す |
double |
determinant()
行列式を返す |
boolean |
equals(java.lang.Object obj)
オブジェクトの等価判定をする |
Vector |
getColumnVector(int column)
列ベクトルを返す |
Vector[] |
getColumnVectors()
列ベクトルを返す |
Vector |
getRowVector(int row)
行ベクトルを返す |
Vector[] |
getRowVectors()
行ベクトルを返す |
int |
hashCode()
オブジェクトのハッシュコード値を返す |
boolean |
isSymmetry()
行列が対称かどうかを判別する |
java.lang.String |
toString()
データ文字列を返す |
java.lang.String[] |
toStrings()
データ文字列を格納した配列を返す |
double |
trace()
トレースを返す |
クラス java.lang.Object から継承されたメソッド |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
インタフェース figure.Matrix から継承されたメソッド |
---|
add, add, columnCount, eliminateRowColumn, extructRowColumn, get, init, mul, rowCount, set, transposition |
フィールドの詳細 |
---|
protected static final double TOLERANCE
public double dataMax
コンストラクタの詳細 |
---|
protected AbstractMatrix()
メソッドの詳細 |
---|
public boolean isSymmetry()
Matrix
内の isSymmetry
public double trace()
Matrix
内の trace
public double determinant()
Matrix
内の determinant
public Vector getRowVector(int row)
Matrix
内の getRowVector
row
- 行のインデックス
public Vector getColumnVector(int column)
Matrix
内の getColumnVector
column
- 列のインデックス
public Vector[] getRowVectors()
Matrix
内の getRowVectors
public Vector[] getColumnVectors()
Matrix
内の getColumnVectors
protected void checkRange(int row, int column)
public java.lang.Object clone()
Matrix
内の clone
java.lang.Object
内の clone
public int hashCode()
java.lang.Object
内の hashCode
public boolean equals(java.lang.Object obj)
java.lang.Object
内の equals
obj
- 比較対象のオブジェクト
Matrix
のインスタンスで同じ値を持つ場合は truepublic java.lang.String[] toStrings()
Matrix
内の toStrings
public java.lang.String toString()
java.lang.Object
内の toString
|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |