HOW CAN I SOLVE THİS PROBLEM WİTH FUNCTİON
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
z=0:0.1:30
Z=1.4*X^2+1
X=F(Z)
HOW CAN I FİND THİS FUNCTİONS ANSWERS
X(Z)=????
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 5 月 15 日
Try this
syms X Z
eq = Z == 1.4*X^2+1;
X(Z) = solve(eq, X);
z = 0:0.1:30;
result = X(z)
Since z is quadratic in terms of 'x', therefore, inverting, it will give you two solutions.
4 件のコメント
Gökhan BAYKARA
2020 年 5 月 18 日
Gökhan BAYKARA
2020 年 5 月 18 日
Gökhan BAYKARA
2020 年 5 月 18 日
Ameer Hamza
2020 年 5 月 18 日
In MATLAB, the name of the variable is case sensitive. Write upper and lower case X and Z the same as I have written in my code.
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

