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 CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by