Info

この質問は閉じられています。 編集または回答するには再度開いてください。

To what power can Matlab compute to?

1 回表示 (過去 30 日間)
George Carlisle
George Carlisle 2015 年 10 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
To what level can Matlab compute? I tried to do a permutation calculation and it only went to 9 digits before erroring. Also, are there limits in the education edition vs. the regular one?
  4 件のコメント
Muthu Annamalai
Muthu Annamalai 2015 年 10 月 2 日
You will get results upto double precision.
Steven Lord
Steven Lord 2015 年 10 月 2 日
So to compute all permutations of a 20 element vector would require a matrix with this many rows and 20 columns:
>> nrows = factorial(20)
nrows =
2.4329e+18
How much memory would this matrix require, assuming 2 bytes per element?
>> ncols = 20;
>> bytes = 2*nrows*ncols;
>> exabytes = bytes/(1000^6)
exabytes =
97.3161
According to Wikipedia that's roughly between 50000 and 300000 Libraries of Congress worth of data. So how long would it take you to process all those rows at one row per second?
>> processingOnePermutationPerSecond = years(seconds(nrows))
processingOnePermutationPerSecond =
77095595549.806
That's 77 billion years. Earth is around 4.5 billion years old. You might want to rethink your approach to the problem that requires all those permutations.

回答 (1 件)

Sean de Wolski
Sean de Wolski 2015 年 10 月 2 日
What do you need? With Symbolic Math Toolbox, included in Student version, you can symbolically work on very large numbers.
x = sym('pi')
y = x.^234
vpa(y,100000)

タグ

タグが未入力です。

製品

Community Treasure Hunt

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

Start Hunting!

Translated by