Problem 540. Convert hex color specification to MATLAB RGB
Here's something that comes up all the time if you deal with web pages.
Given a hexadecimal color specification of the form #FFFFFF, convert it to a 3 element MATLAB color specification. Remember that MATLAB RGB color values are between 0 and 1.
The input is a string starting with '#'. The output should be a 1-by-3 vector.
Examples:
Input '#0000FF' Output [0 0 1]
Input '#33FF00' Output [0.2 1 0]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers241
Suggested Problems
-
Find the two most distant points
2834 Solvers
-
Find state names that end with the letter A
1175 Solvers
-
Check to see if a Sudoku Puzzle is Solved
321 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
602 Solvers
-
Sum the 'edge' values of a matrix
346 Solvers
More from this Author50
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!