CopyMatrix
TheCopyMatrixfunction copies the contents of one matrix into another matrix.
pascal void CopyMatrix (MatrixRecordPtr m1, MatrixRecord *m2);
m1- Specifies the source matrix for the copy operation.
m2- Contains a pointer to the destination matrix for the copy operation. The
CopyMatrixfunction copies the values from the matrix specified by them1parameter into this matrix.DESCRIPTION
TheCopyMatrixfunction is a convenience function for copying the contents of one matrix to another. You can achieve the same results by using the Memory Manager'sBlockMoveroutine, or by assigning the contents of one matrix record to another directly.ERROR CODES
None