how to print the size of a matrix in a print statement?

Illustration
rignwaths - 2024-08-20T20:59:40+00:00
Question: how to print the size of a matrix in a print statement?

How can i print the size of a matrix in a statement ?  fprintf("The size of the matrix is: %s", size(m))

Expert Answer

Profile picture of Kshitij Singh 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)))) 


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!