How can I visualize a Matrix Data in Workspace in common Matrix notation, instead of with semicolon notation?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm dealing with huge sets of matrices and I want to print them.
However in Workspace data is shown as:
[x x x; x x x; x x x]
I want it to be shown as:
[x x x]
[x x x]
[x x x]
Is there a way to do that? Thank you.
0 Kommentare
Antworten (1)
BhaTTa
am 30 Aug. 2024
@Bidsitlov, to print or display the workspace variable(in your case the variable is a 3x3 matrix) in the format mentioned by you, refer to the code given below:
% Example Matrix
A = [1 2 3; 4 5 6; 7 8 9];
[m, n] = size(A);
% Print the matrix row by row
fprintf('Matrix A:\n');
for i = 1:m
fprintf('[%g %g %g]\n', A(i, :));
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!