Error, (in expand/bigprod) integer too large in context ?
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Christopher Creutzig
2014 年 9 月 1 日
編集済み: Christopher Creutzig
2014 年 9 月 1 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!