How to set an upper bound for the solution obtained using vpasolve?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nitheesh S Pillai
il 25 Mag 2020
Commentato: Nitheesh S Pillai
il 11 Giu 2020
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?
2 Commenti
Risposta accettata
Nishant Gupta
il 28 Mag 2020
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]
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!