Azzera filtri
Azzera filtri

How to write vector form of very large number?

2 visualizzazioni (ultimi 30 giorni)
manoj subedi
manoj subedi il 10 Gen 2020
Commentato: Stephen23 il 10 Gen 2020
I have to deal with very large numbers like 99^99.
I want these numbers in the vector form. For example, for 5^5=3125 , I should be able to write this in the form {3, 1, 2, 5}
Though the method with sprintf works for some smaller number but num2str-'0' gives negative numbers ?

Risposte (2)

David Hill
David Hill il 10 Gen 2020
You could always use java BigInteger if you don't have symbolic toolbox.
import java.math.*
x=BigInteger(99);
x=x.pow(99);
x=char(x)-'0';

Walter Roberson
Walter Roberson il 10 Gen 2020
John D'Errico has a Variable Precision Integer contribution in the file exchange.
Or you use symbolic toolbox if you have that.

Community Treasure Hunt

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

Start Hunting!

Translated by