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

142 Solutions

60 Solvers

Last Solution submitted on Jun 23, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...