Error of sym>convertChar

2 ビュー (過去 30 日間)
Kutlu Yigitturk
Kutlu Yigitturk 2021 年 4 月 20 日
コメント済み: Kutlu Yigitturk 2021 年 4 月 20 日
How can I solve this problem? Thanks a lot.

採用された回答

Stephan
Stephan 2021 年 4 月 20 日
編集済み: Stephan 2021 年 4 月 20 日
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 件のコメント
Steven Lord
Steven Lord 2021 年 4 月 20 日
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 2021 年 4 月 20 日
Thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by