How can I visualize a Matrix Data in Workspace in common Matrix notation, instead of with semicolon notation?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
BhaTTa
el 30 de Ag. de 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 comentarios
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!