Saving variables to file with desired precision
14 次查看(过去 30 天)
显示 更早的评论
Suppose I want to save the value of a variable, say sqrt(2), to a file, keeping a given number of digits, for example 30 digits, and then I want to load that value again in workspace, without any loss of precision, which is the correct way to achieve this in Matlab?
0 个评论
回答(1 个)
José-Luis
2014-3-19
编辑:José-Luis
2014-3-19
A double might not have sufficient capacity to store 30 digits of precision. It only has the capacity for around 15 decimal digits. Please read the article about doubles on wikipedia if you want to understand better.
Here is an illustration of their limitation:
a(1) = 10^-40;
a(2) = 1234567890.12345678901234567890;
fid = fopen('test.txt','w');
fprintf(fid,'%30.30f \n',a); %floating point with a width and precision of 30 numbers
fclose(fid);
This might be an interesting read as well.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!