Fprintf values in an ordered manner
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fuwad Abdul Muyeed
el 8 de Abr. de 2021
Comentada: Fuwad Abdul Muyeed
el 9 de Abr. de 2021
Hi. I have two arrays with different values. x=[0.1,5,10] and y=[400,500,600]. When I print out the values with the following command,
fprintf(' %g %10f\n',[x(:),y(:)].')
I get
0.1 400
5 500
10 600
But I want in an ordered manner such that the right column is indented in one straight vertical column.
0.1 400
5 500
10 600
Could anyone kindly please help me achieve this?
0 comentarios
Respuesta aceptada
Walter Roberson
el 9 de Abr. de 2021
x=[0.1,5,10]
y=[400,500,600]
fprintf('%-10g %-10f\n',[x(:),y(:)].')
Más respuestas (0)
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!