How to take an equation as input from user and read the coefficient from it?
2 ビュー (過去 30 日間)
古いコメントを表示
How to take an equation as input from user and read the coefficient from it?
回答 (1 件)
Walter Roberson
2016 年 12 月 27 日
If you have the Symbolic toolbox, then you could convert the string representing the equation to a function handle using str2func() and then you could pass symbolic arguments to it to get a symbolic representation of it.
At that point, if the equation is known to represent a polynomial, then you can use coeffs() to get the coefficients.
If the equation is not known to represent a polynomial then you can use children() to break it into pieces, and examine the pieces using symvar() to determine whether they contain the variable of interest. However, in such a case it gets tricky to define what the coefficients are. For example, for sin(2*x) it is not really correct to say that the coefficient of x is 2.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!