Error of sym>convertChar
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kutlu Yigitturk
el 20 de Abr. de 2021
Comentada: Kutlu Yigitturk
el 20 de Abr. de 2021
How can I solve this problem? Thanks a lot.
0 comentarios
Respuesta aceptada
Stephan
el 20 de Abr. de 2021
Editada: Stephan
el 20 de Abr. de 2021
syms a b c x
f = str2sym('a*x^2 + b*x + c')
subs(f,x,5)
subs(f,[x a b c],[5 1 2 3])
2 comentarios
Steven Lord
el 20 de Abr. de 2021
Alternately since all the symbolic variables have been defined on the first line:
syms a b c x
f = a*x^2+b*x+c
subs(f, x, 5)
Más respuestas (0)
Ver también
Categorías
Más información sobre Assumptions 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!