Filter löschen
Filter löschen

Error of sym>convertChar

1 Ansicht (letzte 30 Tage)
Kutlu Yigitturk
Kutlu Yigitturk am 20 Apr. 2021
Kommentiert: Kutlu Yigitturk am 20 Apr. 2021
How can I solve this problem? Thanks a lot.

Akzeptierte Antwort

Stephan
Stephan am 20 Apr. 2021
Bearbeitet: Stephan am 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 Kommentare
Steven Lord
Steven Lord am 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 am 20 Apr. 2021
Thank you very much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by