Borrar filtros
Borrar filtros

could anyone tell me how to display the row size of the matrix,if the size of the row keeps on changing.

1 visualización (últimos 30 días)
could anyone tell me how to display the row size of the matrix,if the size of the row keeps on changing.

Respuesta aceptada

Image Analyst
Image Analyst el 15 de En. de 2018
Try this wherever you want to report the number of rows:
message = sprintf('The number of rows = %d.\n', size(yourData));
fprintf('%s', message);
uiwait(helpdlg(message));
If that doesn't do it for you, then try this link
  3 comentarios
Image Analyst
Image Analyst el 16 de En. de 2018
Try this:
rows1 = size(data1);
rows2 = size(data2);
rows3 = size(data3);
rows4 = size(data4);
rows5 = size(data5);
maxRows = max([rows1, rows2, rows3, rows4, rows5]);
for row = 1 : maxRows
if row <= rows1
% Process data1.
end
if row <= rows2
% Process data2.
end
if row <= rows3
% Process data3.
end
if row <= rows4
% Process data4.
end
if row <= rows5
% Process data5.
end
end

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by