MATLAB中设置位数方法:
format long %设置为小数点后9位
format short %设置为小数点后4位
vpa(pi,200) %设置pi为小数点后200位
第二:手动
手工设置:
file-->perferences-->command window -->Text display
-->Numeric format / Numeric display
就是里面的文件大小加起来吧, 用dir, 结果里有文件大小。 别忘了算子文件夹什么的
windows看文件夹大小也只能现算的
function [ sum ] = FolderSize( folderName )
%FOLDERSIZE Summary of this function goes here
% Detailed explanation goes here
sum = 0;
lst = dir(folderName);
for index = 1:length(lst)
if strcmp(lst(index)name, '') || strcmp(lst(index)name, '')
continue;
end
if lst(index)isdir
sum = sum + FolderSize([folderName '\' lst(index)name]);
else
sum = sum + lst(index)bytes;
end
end
end
以上就是关于matlab 怎么控制显示位数两位全部的内容,包括:matlab 怎么控制显示位数两位、MATLAB如何获取文件夹的大小、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)