i am trying to solve ODE with the help of laplace transform, but it shows error in doing so, why?
3 ビュー (過去 30 日間)
古いコメントを表示
Nilesh Vishwakarma
2021 年 7 月 22 日
回答済み: Swetha Polemoni
2021 年 7 月 28 日
syms x t s X
>> Dx = diff(x,t);
D2x = diff(Dx,t);
>> F=laplace(D2x+7*Dx+10*x(t)==20);
Error using sym/subsindex (line 864)
Invalid indexing or function definition. Indexing must follow MATLAB indexing. Function arguments must be symbolic variables,
and function body must be sym expression.
Error in sym/subsref (line 909)
R_tilde = builtin('subsref',L_tilde,Idx);
>>
0 件のコメント
採用された回答
Swetha Polemoni
2021 年 7 月 28 日
Hi
The error is due to usage of x(t) before decalaring it . Try the following line of code.
syms x(t)
Hope this helps
0 件のコメント
その他の回答 (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!