Gets a matrix variable by name.
[Visual Basic] Public Function GetMatrix( _ ByVal name As String _ ) As Matrix [C#] public Matrix GetMatrix( string name ); [C++] public: Matrix* GetMatrix( String* name ); [JScript] public function GetMatrix( String name ): Matrix;
The matrix object.
Exception Type | Condition |
---|---|
ArgumentNullException | Thrown when name is null. |
MatlabGetVariableFailedException | Thrown when the named matrix does not exist. |