フィルターのクリア

Matlab is unable to evaluate very a very long expression

8 ビュー (過去 30 日間)
Dominik Hiltbrunner
Dominik Hiltbrunner 2021 年 11 月 5 日
編集済み: Dominik Hiltbrunner 2021 年 11 月 5 日
Attached to this post is a text file containing a very long expression.
I want to evaluate this expression numerically in a Matlab function, i.e. something like this:
function result = (<long lost of all the parameters>)
result = '<this very long expression from the text file>'
end
The computer gets stuck when doing so, not returning a result even after hours of running.
Is there anything I can do to speed up the computation of very long expressions?
  2 件のコメント
Stephen23
Stephen23 2021 年 11 月 5 日
Note that you should replace all of the ^(1/2) with SQRT.
What sizes are the input arrays?
Are you intentionally using matrix operations instead of array operations everywhere in this code?
Dominik Hiltbrunner
Dominik Hiltbrunner 2021 年 11 月 5 日
The ^(1/2) terms are in fact generated by Matlab itself, i.e. the long expression also comes from a Matlab file in which my sqrt(...) inputs are then printed in this way. Can I prevent Matlab from doing so?
Every variable in this expression is a scalar, no arrays or matrix operations are performed.

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

採用された回答

Steven Lord
Steven Lord 2021 年 11 月 5 日
How did you generate this long expression? Did you generate this using Symbolic Math Toolbox? If so consider using matlabFunction to create a function file from this expression (leaving the 'Optimize' option set to its default value of true) and see if the optimization process simplifies the computation of that expression by extracting out some common terms that it can compute once and use repeatedly.
  1 件のコメント
Dominik Hiltbrunner
Dominik Hiltbrunner 2021 年 11 月 5 日
編集済み: Dominik Hiltbrunner 2021 年 11 月 5 日
This is fantastic!
I didn't know about this function before. I used it as follows:
matlabFunction(symbolic_expression,'File','file_name','Optimize',true);
I takes almost 20 minutes to generate/optimize this file, but the computation is incredible fast.
Godd job!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by