Matlab is unable to evaluate very a very long expression

8 次查看(过去 30 天)
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
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
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 CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by