How to edit a cell to include a parantheses

2 ビュー (過去 30 日間)
joseph Frank
joseph Frank 2013 年 3 月 24 日
I have a number 7.511502463068333e-04. I want to put it in a cell. I used :
B=[7.511502463068333e-04];
A=num2cell(B);
however i want the number to be in parentheses as a 4 decimal point number. i.e. i want it to appear as:
A='(0.0008)';
How can i do that?

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 24 日
編集済み: Azzi Abdelmalek 2013 年 3 月 24 日
fprintf('(%.4f)\n',B)
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 24 日
編集済み: Azzi Abdelmalek 2013 年 3 月 24 日
copy and paste
B=7.511502463068333e-04;
fprintf('(%.4f)\n',B)
Walter Roberson
Walter Roberson 2013 年 3 月 24 日
A = sprintf('(%.4f)', B);
Or
A = num2str(B, '(%.4f)');
Note: num2cell() is for converting arrays into cell arrays, not for changing them into character format.

サインインしてコメントする。

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by