我有这个:
leg2=strcat('Max Degree :',num2str(adet(1,1)/ch(l)));
leg3=strcat('Min Degree :',num2str(adet(1,2)/ch(l)));
leg4=strcat('Max Request :',num2str(adet(1,3)/ch(l)));
leg5=strcat('Min Request :',num2str(adet(1,4)/ch(l)));
leg6=strcat('Max Priority :',num2str(adet(1,5)/ch(l)));
leg7=strcat('Random :',num2str(adet(1,6)/ch(l)));
leg8=strcat('AICS :',num2str(adet(1,7)/ch(l)));
legend(leg2,leg3,leg4,leg5,leg6,leg7,leg8,'Location','SouthWest');
此处,adet(1,1)/ch(l)
是介于0和1之间的数字。有时它会变成0.01666667
。我想为它设置一个精确度,使它像“0.02”。
我可以使用disp()
format bank
函数执行此操作。但我不知道如何在情节中应用它。抱歉英语不好。
答案 0 :(得分:2)
在num2str
中使用格式说明符(在legend
语句中):
>> num2str(pi) %// default
ans =
3.1416
>> num2str(pi, '%.2f') %// two decimal figures
ans =
3.14