필터 지우기
필터 지우기

MATLAB Symbolic or MuPAD, How can i get a dependent variable of equation in terms of the other variables?

조회 수: 2 (최근 30일)
Hi
Using Matlab symbolic toolbox or MuPad, i 've a long symbolic equation Y in terms of alot of symbols (X,a,b,V....) How can i get X in terms of all the others ?
simple example: Y= X^2 + Z^3 how can i get X in terms of Y Z... ? i.e .. how to get this ... X= sqrt(Y-Z^3)
Thanks alot

답변 (1개)

Deepak Ramaswamy
Deepak Ramaswamy 2014년 6월 6일
>> solve(y-x^2-z^3,x)
ans =
(- z^3 + y)^(1/2)
-(- z^3 + y)^(1/2)

카테고리

Help CenterFile Exchange에서 Numeric Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by