Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 mat lab 中找到一个数字的尾数和指数。有没有计算它们的函数或方法?
例如,当数字为 0.0005 时,此函数返回 5 表示尾数,-4 表示指数
谢谢你
指数可由下式给出:
x= 0.0005; exponent=floor(log10(x));
和系数(我拒绝称它为尾数,因为它不符合一般定义)。
coeff=x/10^exponent;