필터 지우기
필터 지우기

How to plug in and solve for algebraic equation?

조회 수: 4 (최근 30일)
Meet Koradia
Meet Koradia 2022년 5월 13일
답변: Sam Chak 2022년 5월 13일
For example this
  댓글 수: 2
KSSV
KSSV 2022년 5월 13일
You want to solve it for what?

댓글을 달려면 로그인하십시오.

답변 (2개)

KSSV
KSSV 2022년 5월 13일
t = linspace(0,1) ;
z = 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
plot(t,z)
  댓글 수: 1
KSSV
KSSV 2022년 5월 13일
syms z t
eqn = z == 15*(1+(4.1*0.064)/1000*(15/150)^(2/3)*t.^(5/3)).^(-3/2) ;
s = solve(eqn,t)
Warning: Solutions are only valid under certain conditions. To include parameters and conditions in the solution, specify the 'ReturnConditions' value as 'true'.
s = 

댓글을 달려면 로그인하십시오.


Sam Chak
Sam Chak 2022년 5월 13일
The idea is to reverse the equality in z, and then isolate t to the left-hand side. You can solve this algebra problem by hand and obtain:

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by