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

140 Solutions

58 Solvers

Last Solution submitted on Apr 11, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...