How to set an upper bound for the solution obtained using vpasolve?

조회 수: 5 (최근 30일)
I am new to MATLAB and I am using vpasolve to obtain values of 3 unknown parameters. However, I need to make sure that one parameter should stay below a certain value. How do I impose that?

채택된 답변

Nishant Gupta
Nishant Gupta 2020년 5월 28일
You can specify the range of solutions in vpasolve function as following:
S = vpasolve(x^6 - x^2 == 3, x, [0 2])
In this case, only those solutions will be returned as output which are lying in the range [0,2]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by