Matlab:sprintf格式化输出 数值%d

sprintf 函数原型:

str = sprintf(formatSpec,A1,...,An) 
% formats the data in arrays A1,...,An according to formatSpec in column order, and returns the results to str.
% 返回值str是格式化后的字符串形式,formatSpec是format

非常类似于C语言中的格式化输出命令,Matlab中的sprintf在格式化数值类型%d时需要注意的点:

Matlab:sprintf格式化输出 数值%d_第1张图片

当format直接使用%d时就是简单格式化一个数值。

Matlab:sprintf格式化输出 数值%d_第2张图片

 当使用%0Nd 时,N表示该数值一共占N位,0标志位表示不足N位时前面补零;

注意:当使用%Nd的时候会发生什么呢? 依然是表示数值占用N位,但是不足N位的前面为空。

Matlab:sprintf格式化输出 数值%d_第3张图片

 

你可能感兴趣的:(MATLAB)