Yeah!!! really nice!!!
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))
|
404 Solvers
202 Solvers
Back to basics 8 - Matrix Diagonals
782 Solvers
Get the length of a given vector
3566 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!