Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
hex = '#0000FF';
rgb = [0 0 1];
assert(isequal(color_hex2rgb(hex),rgb))
|
2 | Pass |
%%
hex = '#33FF00';
rgb = [0.2 1 0];
assert(isequal(color_hex2rgb(hex),rgb))
|
3 | Pass |
%%
hex = '#FFCCFF';
rgb = [1 0.8 1];
assert(isequal(color_hex2rgb(hex),rgb))
|
4 | Pass |
%%
hex = '#999999';
rgb = [.6 .6 .6];
assert(isequal(color_hex2rgb(hex),rgb))
|
17477 Solvers
1836 Solvers
Find the two most distant points
1628 Solvers
1327 Solvers
927 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!