Problem 42612. Convert ColorSpec string to RGB triplet

Given a ColorSpec string, either in short or long form, return the corresponding RGB triplet. If the input is not a valid color, return an empty vector.

Examples

str2rgb('red') returns [1 0 0]
str2rgb('k') returns [0 0 0]
str2rgb('pizza') returns []

Solution Stats

43.48% Correct | 56.52% Incorrect
Last Solution submitted on Sep 11, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers45

Suggested Problems

More from this Author44

Community Treasure Hunt

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

Start Hunting!