How can i transform a symbolic variable to numbers?

1 visualización (últimos 30 días)
masoud jiryaei
masoud jiryaei el 4 de Sept. de 2019
Comentada: madhan ravi el 4 de Sept. de 2019
I have a matrix in symbolic variable : A=[1 2 3 ; 4 5 6 ;7 8 9]
now I want to transform it to the numerics (a real matrix).

Respuesta aceptada

madhan ravi
madhan ravi el 4 de Sept. de 2019
Use subs() and then use double()
doc subs
doc double
  2 comentarios
masoud jiryaei
masoud jiryaei el 4 de Sept. de 2019
How?
Can you show me?
madhan ravi
madhan ravi el 4 de Sept. de 2019
syms x y % an example
A = [x+2, 2+y; 3*x*y, 4*y^2]
v = [2,3]
subs(A,{x,y},{v(1),v(2)}) % here's what happens is that x symbolic variable is substituted with 2 and 3 for y

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by