How to read a very large number, say of 700 digits?

8 次查看(过去 30 天)
If I have a number, say N of 700 digits, then how can I read it?
I have tried using ELLIPSIS (...) as:
N = 1234567890123 ...
4567899089339 ...
1234567891233;
But, this does Not work.

采纳的回答

John D'Errico
John D'Errico 2021-10-2
编辑:John D'Errico 2021-10-2
You don't understand. A 700 digit number is not representable in double precision. Even if it were, then roughly 684 of those digits will never be stored in the number when you do put it into a variable. Anything past the 16 most significant digits will be complete garbage. For example:
X = 1234567890987654321012345;
X has 25 digits in it.
format long g
X
X =
1.23456789098765e+24
But have we stored al of those digits, correctly?
sprintf('%0.30f',X)
ans = '1234567890987654441861120.000000000000000000000000000000'
MATLAB sees it as an integer, but do you see that the 9 least significant digits are complete garbage?
Next, can you use a line continuation for the digits of a number? No. So you CANNOT do this to represent a 20 digit number
Y = 1234567890...
9876543210;
MATLAB will generate an error if you try.
The only way you could store a number like that is if you use symbolic form. Thus...
S = '123456789012345678901234567890123456789012345678901234567890'
S = '123456789012345678901234567890123456789012345678901234567890'
XS = str2sym(S)
XS = 
123456789012345678901234567890123456789012345678901234567890
And you could build up a string vector using multiple continued lines. But don't bother trying to put that number into a double. Again, complete crapola.
But remember that all computations with such a number will be incredibly slow, when compared to using double precision. You could also use my VPI or HPF toolboxes to represent long numbers like this, but again, quite slow by comparison.
  1 个评论
Stephen23
Stephen23 2021-10-2
编辑:Stephen23 2021-10-2
Emphasizing: 700 digits is well above the largest floating point number anyway.
realmax()
ans = 1.7977e+308

请先登录,再进行评论。

更多回答(2 个)

Sulaymon Eshkabilov

Steven Lord
Steven Lord 2021-10-1
Your 700 digit number is too large to fit in double precision. The largest finite double precision number doesn't have that many digits.
log10(realmax)
ans = 308.2547
What were you hoping to do with this huge number? Are you hoping to deploy whatever solution you come up with using MATLAB Compiler or MATLAB Coder?
  2 个评论
Abdul Gaffar
Abdul Gaffar 2021-10-2
编辑:Abdul Gaffar 2021-10-2
Maybe I don't undertand you. I am rewriting:
Let N = 123456...23, (a 700 digits number) of double type.
One way to read N is as: Write N in a single row, and I am done.
But, if I have to write N in several rows, as I write the following (using ellipsis):
y = 3 + ...
2 + ...
3
then how to do for N?
Further, I will separate every 2 digits of N to make N as 1 x 350 row vector. If more elaboration is needed, I am ready to provide.
Stephen23
Stephen23 2021-10-2
编辑:Stephen23 2021-10-2
"Let N = 123456...23, (a 700 digits number) of double type."
Nope. As this answer already explains, that value is too large to store as DOUBLE type.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by