How can I replace some symbolic values in a matrix?
Mostrar comentarios más antiguos
Hello!
I have a (symbolic) matrix A and its components depend on some symbolic variables (x, y and z). I want to replace the symbolic values with zero and I used subs function:
A = subs(subs(subs(A, x, 0), y, 0), z, 0);
and it doesn’t work (the replacement don’t take place) It doesn’t work either:
A = subs(A, x, 0);
What can I do to replace my symbolic variables with zero in this case?
Thanks!
2 comentarios
Dishant Arora
el 4 de Mzo. de 2014
The replacement doesn't take place, then what do you get?? It should work fine.
Dina Irofti
el 4 de Mzo. de 2014
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Numeric Solvers en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!