Using a base bigger than 36
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi everyone,
Do you know how can I possibly transform a vector that could be base2 , base7 , but also bigger like base128 or base150 into a decimal. Because base2dec seems to only go as high as base36
0 Commenti
Risposta accettata
Niklas Nylén
il 14 Apr 2014
You can see the code of base2dec by writing
edit base2dec
The reason it is limited to base 36 seems to be that you run out of letters in the english alphabet. You should be able to copy base2dec and add more symbols for a higher base.
2 Commenti
Niklas Nylén
il 14 Apr 2014
Modificato: Niklas Nylén
il 14 Apr 2014
That requires some other, still small, adaptations of base2dec. More specifically you need to remove the value conversion lines near the end and use your vector as input.
Or you could write your own conversion code, which is not that difficult.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!