Can vpasolve restrict the numerical solution to be a real number? If it can, how should I stipulate this condition?

33 次查看(过去 30 天)
I have eight unknown variables and eight equations. Now I use the vpasolve to find the numerical solution of the equation, hoping to get only the real solution, but the vpasolve only returns a complex solution. Can I restrict the it to output only real solutions? If I can, how should I implement it? Thank you for your reply.

回答(2 个)

Dyuman Joshi
Dyuman Joshi 2022-4-24
syms x
S = vpasolve(x^6 - x^2 == 3, x)
S = 
assume(x,'real')
S = vpasolve(x^6 - x^2 == 3, [-Inf Inf])
S = 

jessie sun
jessie sun 2022-4-25
Dear @Dyuman Joshi, I used "assume" to restrict the unknown variables to be real numbers:
But the output result was not as I expected:
  3 个评论

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by