Matlab code for fractions

102 ビュー (過去 30 日間)
Johnny McKenney
Johnny McKenney 2020 年 9 月 27 日
コメント済み: Star Strider 2020 年 9 月 27 日
How would I write 1.5/s as a num[ ] den[ ] code in matlab?

採用された回答

John D'Errico
John D'Errico 2020 年 9 月 27 日
Confusing question.
Do you know the value of s?
s = 7
s =
7
>> 1.5/s
ans =
0.214285714285714
>> format rat
>> 1.5/s
ans =
3/14
Do you not know what is is, so you want to use s in a symbolic form?
syms s
1.5/s
ans =
3/(2*s)
  1 件のコメント
Johnny McKenney
Johnny McKenney 2020 年 9 月 27 日
I do not know S. I think it is 1. We are meant to write
numx = [ 1 2 3]
denx = [1 2 3]
as an example. I just can't figure out how to do that with 1.5/S or 1/S+2

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

その他の回答 (1 件)

Star Strider
Star Strider 2020 年 9 月 27 日
Use the rat function:
x = 1.5
[num,den] = rat(x)
producing:
num =
3
den =
2
.
  2 件のコメント
Johnny McKenney
Johnny McKenney 2020 年 9 月 27 日
ok thank you
Star Strider
Star Strider 2020 年 9 月 27 日
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by