how can i convert decimal to hex or another basis without use dec2hex ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mohammad Imam Malik
il 26 Mag 2017
Commentato: Mohammad Imam Malik
il 26 Mag 2017
I need to make a function about convert basis to another (decimal to oktal or another) but i dont know the prinsip , i hope some one give me tips for that
0 Commenti
Risposta accettata
Jan
il 26 Mag 2017
I really do like this forum. But sometimes I suggest to take the time to search in the net. You can imagine, that this problem has been solved by others already. You find the general algorithm at WikiPedia and most likely your textbook for maths. When you search for "Matlab convert hex to base" you will even find running Matlab code.
2 Commenti
Jan
il 26 Mag 2017
This is okay. Questions of beginners are welcome in this forum. Specific question get specific answers usually.
Più risposte (1)
MathReallyWorks
il 26 Mag 2017
Hello Mohammad Imam Malik,
I guess you are asking for the principle behind these conversions.
Read this:
Steps:(Decimal to hex)
1. Divide the decimal number by 16. Treat the division as an integer division.
2. Write down the remainder (in hexadecimal).
3. Divide the result again by 16. Treat the division as an integer division.
4. Repeat step 2 and 3 until result is 0.
5. The hex value is the digit sequence of the remainders from the last to first.
3 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!