Error, (in expand/bigprod) integer too large in context ?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Antworten (1)
Christopher Creutzig
am 1 Sep. 2014
Bearbeitet: Christopher Creutzig
am 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.
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!