필터 지우기
필터 지우기

Hi guys. How can I have display a color from RGB coordinates?

조회 수: 33 (최근 30일)
Luigi Treccozzi
Luigi Treccozzi 2018년 7월 11일
댓글: Luigi Treccozzi 2018년 7월 11일
What I'd like to do is to print a color starting from its RGB coordinates. Like MS Paint tool, more or less. There already exists a tool in Matlab? Thanks

채택된 답변

KSSV
KSSV 2018년 7월 11일
Red = [255 0 0] ;
Lime = [0 255 0] ;
x = [0 1 1 0] ; y = [0 0 1 1] ;
figure
fill(x,y,Red/255)
figure
fill(x,y,Lime/255)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by