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!

