how to write code to find y???
조회 수: 4 (최근 30일)
이전 댓글 표시
I am new user to Matlab. I want to calculate the value of y for a given value of x
if x=8
x=(y^2)+2
how to write code to find y???
댓글 수: 0
답변 (1개)
Adam
2015년 3월 13일
y = [-1 1] .* sqrt( x - 2 );
This is maths rather than Matlab though. Once you rearrange the equation the Matlab code for it is trivial!
There are numerous ways to code it and if you don't care about the negative root then it is even more trivial.
댓글 수: 2
Adam
2015년 3월 13일
You probably need the Symbolic Math Toolbox for that then, although it isn't something I do in my work so there may be methods in base Matlab too.
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!