Display rational numbers using fprintf

51 ビュー (過去 30 日間)
Qianyu
Qianyu 2013 年 1 月 4 日
I am using fprintf to write my answers to a file. I have numbers such as: 3/7,3/11,6/37... I tried different formats but every time it always changed it to a numeric value. Then I tried format rat before fprintf. This didn't work neither. How can I display a rational number using fprintf?

採用された回答

Matt Fig
Matt Fig 2013 年 1 月 4 日
T = 1/3;
fprintf('The number is: %s\n',strtrim(rats(T)))
  1 件のコメント
Qianyu
Qianyu 2013 年 1 月 10 日
Thanks. It worked great!

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 1 月 4 日
[n,d] = rat(YourNumericValue);
fprint(fid, '%d/%d', n, d)
However, if you have the numerator and denominator already available, then
fprintf(fid, '%d/%d', numerator, denominator)
which is what I think you probably want to do, if I remember your earlier question properly.
MATLAB is not designed to be able to tell the difference between 3/4 and 6/8: it will calculate the binary equivalents of the result and use that binary result, except in the Symbolic Toolbox where it will reduce the fraction to lowest terms and use the reduced rational fraction.

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by