필터 지우기
필터 지우기

How do I specify which variable I want Matlab to solve an equation for so that I don't have to do the algebra myself?

조회 수: 2 (최근 30일)
I am trying to find a way to get Matlab to do the algebra for me so that I don't have to rearrange equations for the variables I want every time I use them. I have tried using solve and fsolve, but I was probably doing it wrong so it didn't get me anywhere.
I am just trying to solve for Ubar in the equation below. Is there a way to put this equation in and specify which variable I want Matlab to solve for?
c = 6;
k = 1.8;
c = Ubar*(0.568+0.433/k)^(-1/k)

채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 14일
syms Ubar
c = 6;
k = 1.8;
eqn = c == Ubar*(0.568+0.433/k)^(-1/k)
solve(eqn, Ubar)
However, the answer should be obvious. Ubar is simply multiplied by a constant and the result is equal to a constant, so obviously the solution is
Ubar == c / (0.568+0.433/k)^(-1/k)
  댓글 수: 1
Michael Boyle
Michael Boyle 2021년 2월 14일
Thank you! I know it's a simple solution, but I wanted to know how to set it up for more complicated equations going forward.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by