How can i show the multiplication table in the command window without showing the zeros?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hannes Arnar
el 14 de Sept. de 2015
Comentada: Joseph Cheng
el 14 de Sept. de 2015
close all; clear all; clc;
for i=1:10
for j=1:i
A(i,j)=i*j;
end
end
disp(A)
0 comentarios
Respuesta aceptada
Star Strider
el 14 de Sept. de 2015
Editada: Star Strider
el 14 de Sept. de 2015
Use repmat to define the format descriptor:
for i=1:10
for j=1:i
A(i,j)=i*j;
end
fprintf(1, [repmat(' %.0f', 1, j) '\n'], A(i,:))
end
1
2 4
3 6 9
4 8 12 16
I just displayed the first four lines here, but the table continues.
1 comentario
Joseph Cheng
el 14 de Sept. de 2015
alternatively
close all; clear all; clc;
for i=1:10
for j=1:i
A(i,j)=i*j;
end
fprintf('%d ',A(i,1:i))
fprintf('\n')
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!