Question about syms
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
Hi, hey im trying to operate with a symbolic expression, but i have this problem:
cpcb=-7.206e-5 syms t
cpcb*t
ans =
-(5317089511806041*tsymb)/73786976294838206464
I need the data from the operation but i dont need in such a weird/cmplex view. Is there any way to show the symbolic operation as -7.206e-5*tsymb??? Thx
Respuestas (2)
Walter Roberson
el 2 de Mayo de 2011
vpa(ans)
1 comentario
Paulo Silva
el 2 de Mayo de 2011
This is just in case Camilo wants the value in that exact form
a=sym2poly(vpa(cpcb*t))
format short
a(1) %this is the value -7.206e-5
Camilo Lasso
el 2 de Mayo de 2011
0 votos
La pregunta está cerrada.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!