Error of sym>convertChar
2 views (last 30 days)
Show older comments
Kutlu Yigitturk
on 20 Apr 2021
Commented: Kutlu Yigitturk
on 20 Apr 2021
How can I solve this problem? Thanks a lot.
0 Comments
Accepted Answer
Stephan
on 20 Apr 2021
Edited: Stephan
on 20 Apr 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 Comments
Steven Lord
on 20 Apr 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)
More Answers (0)
See Also
Categories
Find more on Assumptions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!