how to do the equation following its answer on matlab?

1 回表示 (過去 30 日間)
kunal
kunal 2020 年 6 月 26 日
回答済み: John D'Errico 2020 年 6 月 26 日
after solving this equation how can i verify or compute the answer on matlab??

採用された回答

John D'Errico
John D'Errico 2020 年 6 月 26 日
There is the obvious...
Using y = 1/z, we can transform the problem.
syms z y
Fz = (1/z + 1/z^2 - 1/z^3)/(1 + 1/z + 1/z^2 + 4/z^3);
Fy = subs(Fz,z,1/y);
Ty = taylor(Fy,y,'order',7)
Ty =
6*y^6 + 4*y^5 - 2*y^4 - 2*y^3 + y
Tz = subs(Ty,y,1/z)
Tz =
1/z - 2/z^3 - 2/z^4 + 4/z^5 + 6/z^6

その他の回答 (0 件)

カテゴリ

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