Error Messages/40645

Error Message Examples

In the call to Function Determinant, the indexes of the matrix parameter were not specified, 
and the matrix parameter is not 2-dimensional (it has thress dimensions). It is recommended
that you explicitly specify the two matrix indexes when calling Determinant

Cause

You passed a matrix with more than two dimensions to a function that operates on matrices with two dimensions.

For a two dimensional matrix, Matrix2D, you can call this function simply without passing in the indexes.
Determinant(Matrix2D)

For a matrix with more than 2 dimensions, Matrix3D, you need to explicitly pass the two indexes that you want the function to operate over.
Determinant(Matrix3d, Index1, Index2)

Remedies

Include the two index dimensions you want the function to operate over.




You are not allowed to post comments.

Comments
<comments />