この行列の逆行列(特異でない場合)を求めます(this = this^-1)。
oBoolean = SIMatrix3.InvertInPlace( m ); |
Boolean。この行列が逆行列を持つ(特異でない)場合は True、逆行列を持たない場合は false。
パラメータ | タイプ | 詳細 |
---|---|---|
m | SIMatrix3 | 行列オペランド |
dim m1 ' Create 3x3 matrix. set m1 = XSIMath.CreateMatrix3(2.0, 3.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0) if m1.InvertInPlace then 'do something else 'do another thing end if |