Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
I cant get my column headings to line up with corresponding data. here is my code...
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
They are two word headings and if it was possible to wrap text it might help...any ideas?
table=[M' Iy' MP' TP' TI'];
disp('')
disp( 'Months Annual Interest(%) Monthly Payment($) Total Payment($) Total Interest($)')
disp(table)
0 comentarios
Respuestas (1)
Walter Roberson
el 5 de Feb. de 2014
Use fprintf() instead of disp(). Use format elements that have width counts. For example,
fprintf('%14.2f %12.2f ...', table.');
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!