フィルターのクリア

Export number with fewer decimals and a number in parentheses

1 回表示 (過去 30 日間)
Eric
Eric 2017 年 11 月 3 日
回答済み: Star Strider 2017 年 11 月 3 日
Hi everyone,
I currently have the following number in a 8x4 double. I want to turn this number: -0.6100 to the following: -0.61 (1.48) to export it to Latex. Is this possible?
Thanks a lot in advance.
Best regards,
Eric

回答 (1 件)

Star Strider
Star Strider 2017 年 11 月 3 日
See if the more recent versions of the round (link) function (that allow rounding to a specific number of decimal places) will do what you want.
If you don’t have it, use this emulation of it to round your variables to a specific number of decimal places:
roundn = @(x,n) round(x .* 10.^n)./10.^n; % Round ‘x’ To ‘n’ Digits, Emulates Latest ‘round’ Function

カテゴリ

Help Center および File ExchangeLaTeX についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by