Package hlcd.testing.matlabChecker
Class MatlabMatrixTester
java.lang.Object
hlcd.testing.matlabChecker.MatlabMatrixTester
Creates a Matlab file to test the logic of transposing a matrix, finding
the Hermitian transpose of a matrix and matrix multiplication. A random
Quaternary matrix \(G\) will be generated. The transpose will be calculated,
the Hermitian transpose will also be calculated and both the transpose and
the Hermitian transpose will be multiplied to obtain \(G^\prime\).
//minimal example to execute this class:
public static void main(String[] args) {
System.out.println("Running MatlabMatrixTester...");
MatlabMatrixTester mmt = new MatlabMatrixTester();
System.out.println("MatlabMatrixTester completed.");
}- Since:
- 1.8
- Version:
- 1.0 (February 15th, 2022)
- Author:
- Maysara Al Jumaily
- See Also:
MatlabDeterminantTester
-
Constructor Summary
ConstructorsConstructorDescriptionInitiates the Matlab file creation for testing the transpose, Hermitian transpose and matrix multiplication of randomly generated matrices. -
Method Summary
-
Constructor Details
-
MatlabMatrixTester
public MatlabMatrixTester()Initiates the Matlab file creation for testing the transpose, Hermitian transpose and matrix multiplication of randomly generated matrices.
-