about fprintf.

1 回表示 (過去 30 日間)
Ejay Kasai
Ejay Kasai 2011 年 9 月 13 日
hello, i would like to know how to display my final answer with sq. units. for example my area=4/3. i would like to know how to use fprintf so my final answer would become 4/3 sq. units. thank you!
  2 件のコメント
Fangjun Jiang
Fangjun Jiang 2011 年 9 月 13 日
Are you asking to display a=4/3 as ratio of 4/3 instead of a=1.333, or are you asking to display whatever the square units? Do you want to display at command window, or to a file?
Jan
Jan 2011 年 9 月 13 日
What exactly are "sq. units"?

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

採用された回答

Jan
Jan 2011 年 9 月 13 日
Perhaps you wnat something like this:
x = 1.333333333333;
[a, b] = rat(x);
fprintf('%d/%d m^2\n', a, b)
  2 件のコメント
Ejay Kasai
Ejay Kasai 2011 年 9 月 14 日
but how do display it in decimal places?
Jan
Jan 2011 年 9 月 14 日
fprintf('%f m^2\n', x)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by