Error, (in expand/bigprod) integer too large in context ?

7 views (last 30 days)
When i test the symbolic math toolbox, get an error as follows
Error, (in expand/bigprod) integer too large in context
when try to compute the rank of a large matrix (100 by 100), does that mean the out of memory or something else?

Answers (1)

Christopher Creutzig
Christopher Creutzig on 1 Sep 2014
Edited: Christopher Creutzig on 1 Sep 2014
This error means the computation is trying to compute something like integer^integer with an exponent larger than 2^32. The resulting integer would take up several Gigabytes of memory and take a long time to compute – and be pretty much useless for virtually all applications. So the symbolic engine flat out refuses to start computing it.
>> sym(23)^(2^42)
Error using symengine (line 58)
The integer is too large in context.
You could try calling rank(vpa(A)) instead of rank(A). But it's quite likely your input would then cause intermediate results to be (rounded to) infinity or 0.0, making the result useless.

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!