How can I access the numerical vector in a sym variable equation for future use in my program as a numerical value?

1 visualización (últimos 30 días)
>> syms x y
f1=2*(x^2)-(y^2)-9==0;
f1sub=isolate(f1,x);
y0=1;
x1=subs(f1sub,y,y0)
x1 =
x == (2^(1/2)*10^(1/2))/2
I want to be able to acces the numerical part of a symbolic variable, in this case "(2^(1/2)*10^(1/2))/2" for further use in the program as a numerical variable.
I would appreciate any valuable help with this issue.

Respuestas (1)

Walter Roberson
Walter Roberson el 25 de Mayo de 2020
In this situation,
rhs(x1)
For future use, see also children()

Categorías

Más información sobre Symbolic Variables, Expressions, Functions, and Preferences en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by