Display Percentages in uitable
Mostrar comentarios más antiguos
I have a numeric matrix of percentages in decimal form.
How can I display percentages (with the percent sign) in a uitable?
Respuestas (1)
Fangjun Jiang
el 12 de Jul. de 2011
a=100*rand(100,1);
b=strcat(num2str(a),'%');
c=cellstr(b);
h=uitable('Data',c);
Categorías
Más información sobre Debugging and Improving Code en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!