how to have a correct array format
3 次查看(过去 30 天)
显示 更早的评论
I already set 'long g' as an array format at the variable editor preferences. However when i open the variable editor, the values for my first variable are correct, but the second variable contains values in short format. The second variable obtained after cat function. So does it relates to this? How should i change it. Thank you.
4 个评论
Walter Roberson
2016-6-11
Possibly there are only 5 or so significant decimal places in the data.
Can you save the data as a .mat, including the first variable and the second variable individually?
回答(1 个)
Azzi Abdelmalek
2016-6-10
You can display your numbers with the format of your choice
a=12.123456789,
sprintf('%.6f',a)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numeric Types 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!