Matrix.HasInverse プロパティ

定義

この Matrix 構造体が反転可能かどうかを示す値を取得します。

public:
 property bool HasInverse { bool get(); };
public bool HasInverse { get; }
member this.HasInverse : bool
Public ReadOnly Property HasInverse As Boolean

プロパティ値

Matrix の逆が存在する場合は true。それ以外の場合は false。 既定値は、true です。

次の例では、 Matrix が反転可能かどうかを確認します。 反転可能な場合、 Matrix は反転されます。

private Matrix inverseExample()
{
    
    // Creating a Matrix structure.
    Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
                
    // Checking if myMatrix is invertible.
    if (myMatrix.HasInverse)
    {

        // Invert myMatrix. myMatrix is now 
        // equal to (-0.4, 0.2 , 0.3, -0.1, 1, -2) 
        myMatrix.Invert();
        
        // Return the inverted matrix.
        return myMatrix;
    }
    else
    {
        throw new InvalidOperationException("The matrix is not invertible.");
    }
}

適用対象