Using the command num2str
5 次查看(过去 30 天)
显示 更早的评论
When I run:
num2str(5.7831e-04)
I get: '0.00057831'
How can I obtain '5.7831e-04' instead?
0 个评论
回答(1 个)
Ameer Hamza
2020-11-11
Use sprintf()
sprintf('%.4e', 5.7831e-04)
3 个评论
Ameer Hamza
2020-11-11
Storing a number is not a matter of format. Inside memory, it will be saved as a double datatype with same bits. The format is only important if you want to print the number.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!