Borrar filtros
Borrar filtros

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

33 visualizaciones (últimos 30 días)
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.

Respuestas (2)

Dyuman Joshi
Dyuman Joshi el 24 de Abr. de 2022
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 el 25 de Abr. de 2022
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 comentarios
Walter Roberson
Walter Roberson el 25 de Abr. de 2022
Tips:
vpasolve ignores assumptions set on variables. You can restrict the returned results to particular ranges by specifying appropriate search ranges using the argument init_param.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by