How can i print the size of a matrix in a statement ? fprintf("The size of the matrix is: %s", size(m))
Kshitij Singh answered .
2025-11-20
In fprintf, %s is used for strings. You can use num2str or any of the solutions provided.
fprintf('The size of the matrix is: %s', num2str(size(zeros(10,10))))