のこぎり波のラプラス変換
Show older comments
表題について、下記のコードを作成し、計算すると
syms t;
H=laplace(sawtooth(t))
エラー: 入力引数は 'double' でなければなりません。
とのエラーが発生したため、更に下記のコードに訂正しました。
syms t;
double(t);
H=laplace(sawtooth(t))
すると、別のエラーが発生しました。
エラー: symengine式を double の配列に変換できません。
エラー: sym/double (line 672)
Xstr = mupadmex('symobj::double', S.s, 0);
で発生
これらのエラーを回避してのこぎり波のラプラス変換を実施するにはいかがすればよろしいでしょうか。
当方、初心者のため、基本的な質問で申し訳ございませんが、ご回答お願いいたします。
Accepted Answer
More Answers (0)
Categories
Find more on 微積分 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!