Error of sym>convertChar

3 views (last 30 days)
Kutlu Yigitturk
Kutlu Yigitturk on 20 Apr 2021
Commented: Kutlu Yigitturk on 20 Apr 2021
How can I solve this problem? Thanks a lot.

Accepted Answer

Stephan
Stephan on 20 Apr 2021
Edited: Stephan on 20 Apr 2021
syms a b c x
f = str2sym('a*x^2 + b*x + c')
f = 
subs(f,x,5)
ans = 
subs(f,[x a b c],[5 1 2 3])
ans = 
38
  2 Comments
Steven Lord
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
f = 
subs(f, x, 5)
ans = 
Kutlu Yigitturk
Kutlu Yigitturk on 20 Apr 2021
Thank you very much.

Sign in to comment.

More Answers (0)

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!