Question
How can i print the size of a matrix in a statement ? fprintf("The size of the matrix is: %s", size(m))
Related Questions
Expert Answer
Kshitij Singh
PhD Expert
Answered Nov 20, 2025
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))))
Have a different question? Ask here