フィルターのクリア

How to speed up my code (computing jacobian)

9 ビュー (過去 30 日間)
M. Wang
M. Wang 2024 年 6 月 15 日
コメント済み: Torsten 2024 年 6 月 15 日
My input are a lot of linear expressions such as x1+x2, x2+3*x3 etc. How to speed up my code as follows
allvars = symvar(input); % There are about 1000 LINEAR expressions in 'input'
J = jacobian(input, allvars);
  1 件のコメント
Torsten
Torsten 2024 年 6 月 15 日
You shouldn't work symbolically with about 1000 expressions. A numerical approach is the way to go.

サインインしてコメントする。

採用された回答

Matt J
Matt J 2024 年 6 月 15 日
編集済み: Matt J 2024 年 6 月 15 日
You can use equationsToMatrix to obtain the Jacobian. Depending on what you are doing, you might then convert the matrix to double so you can reuse and do more rapid numerical manipulations with it.
  1 件のコメント
Torsten
Torsten 2024 年 6 月 15 日
Assuming that "input" only consists of linear expressions, not only a lot.

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2011a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by