Error of sym>convertChar
2 ビュー (過去 30 日間)
古いコメントを表示
How can I solve this problem? Thanks a lot.
0 件のコメント
採用された回答
Stephan
2021 年 4 月 20 日
編集済み: Stephan
2021 年 4 月 20 日
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 件のコメント
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
subs(f, x, 5)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Assumptions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!