Error of sym>convertChar

1 vue (au cours des 30 derniers jours)
Kutlu Yigitturk
Kutlu Yigitturk le 20 Avr 2021
Commenté : Kutlu Yigitturk le 20 Avr 2021
How can I solve this problem? Thanks a lot.

Réponse acceptée

Stephan
Stephan le 20 Avr 2021
Modifié(e) : Stephan le 20 Avr 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 commentaires
Steven Lord
Steven Lord le 20 Avr 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 le 20 Avr 2021
Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by