Display Percentages in uitable

I have a numeric matrix of percentages in decimal form.
How can I display percentages (with the percent sign) in a uitable?

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 12 Jul. 2011

2 Stimmen

a=100*rand(100,1);
b=strcat(num2str(a),'%');
c=cellstr(b);
h=uitable('Data',c);

Kategorien

Mehr zu Debugging and Improving Code finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 12 Jul. 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by