Function Name: Matrix 3X3 Sub

Definition

Subtracts the matrix in *b_ptr from the matrix in *a_ptr.

Returns

SE_COORD_SUCCESS - if valid parameters were passed in and all operations succeeded.

SE_COORD_INVALID_SOURCE_MATRIX - if a_ptr or b_ptr was NULL.

SE_COORD_INVALID_DEST_MATRIX - if result_out_ptr was NULL.

Prototype


extern SE_COORD_STATUS_CODE_ENUM
SE_Matrix3X3Sub
(
constSE_MATRIX_3X3_TYPE *a_ptr, (notes)
constSE_MATRIX_3X3_TYPE *b_ptr, (notes)
SE_MATRIX_3X3_TYPE *result_out_ptr (notes)
);

Parameters Notes

a_ptr

 pointer to 1st operand.

b_ptr

 pointer to 2nd operand.

result_out_ptr

 pointer to result.

Prev: Matrix 3X3 Multiply. Next: Matrix 4X4 Add. Up:Index.