How can I visualize a Matrix Data in Workspace in common Matrix notation, instead of with semicolon notation?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
BhaTTa
2024-8-30
@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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!