VPA behavior, workaround requested
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lvn
el 14 de Mayo de 2015
Comentada: Star Strider
el 14 de Mayo de 2015
Does anybody now a workaround for this behaviour of vpa?:
syms a b c
c=a+b; a=1; b=1;
vpa(c)
ans =
a + b
while
vpa(a+b)
returns the expected ans=2. I know I could define c after a and b, but in my particular program (the above is just a minimal example), this is not possible. So I am looking for a simple workaround (vpa(char(c)) also does not work).
0 comentarios
Respuesta aceptada
Star Strider
el 14 de Mayo de 2015
Use the subs function inside the vpa call:
syms a b c
c=a+b; a=1; b=1;
vpa(subs(c))
produces:
ans =
2.0
2 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!