I want to perform matrix operation (for example find the transpose matrix of a given matrix A)
I found some libraries to do so, for example Colt:
http://acs.lbl.gov/software/colt/api/index.html
http://acs.lbl.gov/software/colt/api/cern/colt/matrix/package-summary.html
In the second link is mentioned that if you want to print the transpose, you type:
System.out.println(matrix.viewDice());
However, I don't want to print the transposed matrix. I want to store it in a second matrix, for example B, that would have the appropriate dimensions.
Any ideas?