|
|
|
|
|
- Calculating the transposed matrix
Calculating the transposed matrix The following code is used to calculate the transposed matrix. The name of the matrix is entered by the user in an edit control (EDT_MatrixName). We assume that the matrix is already created. The existence of the matrix is checked by MatExist. // -- Click code on BTN_Transposed // Declare the variables ResTranspose is boolean // Checks whether the matrix exists IF MatExist(EDT_MatrixName) = True THEN // Calculate the transposed matrix ResTranspose = MatTranspose(EDT_MatrixName, "MyTransposedMatrix") // Error? IF ResTranspose = True THEN Info("The transposed matrix was calculated") ELSE // Display the error message Error(ErrorInfo(errMessage)) END ELSE Info("The matrix does not exist") END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|