Ältere Kommentare anzeigen
表題について、下記のコードを作成し、計算すると
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);
で発生
これらのエラーを回避してのこぎり波のラプラス変換を実施するにはいかがすればよろしいでしょうか。
当方、初心者のため、基本的な質問で申し訳ございませんが、ご回答お願いいたします。
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu 微積分 finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!