How to parametrize a function ?

조회 수: 4 (최근 30일)
abdulsamed kaymakci
abdulsamed kaymakci 2022년 12월 8일
댓글: abdulsamed kaymakci 2022년 12월 9일
So i have function like y^(0.5) = x this function created by syms command and id like to replace x with t and find y in terms of t. then r =[x,y] disp(r)

채택된 답변

John D'Errico
John D'Errico 2022년 12월 8일
syms x y
eq = sqrt(y) == x;
syms t real
ysol = solve(subs(eq,x,t),y,'returnconditions',true)
ysol = struct with fields:
y: t^2 parameters: [1×0 sym] conditions: 0 <= t
The constraint tells you that t must be positive. This is because the original equation was written as sqrt(y), which presumes the positive branch of the square root function.
  댓글 수: 1
abdulsamed kaymakci
abdulsamed kaymakci 2022년 12월 9일
And sir its not leaving alone y when y has a power for example x^3 == y^2

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by