How to use Display Function ?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Christine Ak
el 17 de Oct. de 2013
Comentada: Christine Ak
el 17 de Oct. de 2013
Hey ,,, Can any body tell me how to print the values x,y,z by using display function but withOUT spaces between them ??
x=1;
y=2;
z=3;
disp[x y z]
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 17 de Oct. de 2013
Editada: Azzi Abdelmalek
el 17 de Oct. de 2013
If there is no spaces between them, that means you want to display 123
x=1;
y=2;
z=3;
a=[x y z];
display(sprintf('%d',a))
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!