Convert array of decimal numbers into hexadecimal numbers array.
Example
x =[ 32 33 34 35 36 37 38 39 40 41 42 43 44 45]
res= ['20' ;'21' ;'22'; '23' ;'24' ;'25' ;'26' ;'27' ;'28'; '29' ;'2A'; '2B' ;'2C'; '2D'];
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers68
Suggested Problems
-
Basics: 'Find the eigenvalues of given matrix
438 Solvers
-
512 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
597 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
358 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2138 Solvers
More from this Author37
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
cool
I wish people actually tried to solve the problems without using built in functions that "solve" the problem in 1 line. There's nothing to compare to to see how I could improve my code.