why does the green in RGB come out yellow

1 view (last 30 days)
i want to use the following code to demonstrate what RGB is but somehow the green comes yellow. anyone knows why is that?
x=-1:.01:1
y=-1:.01:1
[X,Y]=meshgrid(x,y);
Z=sqrt(X.^2+Y.^2);
Z(Z>1)=1;
R=ones(330,330);
G=ones(330,330);
B=ones(330,330);
R(1:201,1:201)=Z;
G(76:276,76:276)=Z;
B(1:201,126:326)=Z;
img=cat(3,R,G,B);
h=image(img)
thanks in advance yair

Accepted Answer

the cyclist
the cyclist on 31 Jul 2011
For all three colors, you are not getting RGB, but the complementary colors cyan,magenta,yellow.
Here's RGB corrected, but with a black background:
x=-1:.01:1;
y=-1:.01:1;
[X,Y]=meshgrid(x,y);
Z=sqrt(X.^2+Y.^2);
Z(Z>1)=1;
R=zeros(330,330);
G=zeros(330,330);
B=zeros(330,330);
R(1:201,1:201) = 1-Z;
G(76:276,76:276) = 1-Z;
B(1:201,126:326) = 1-Z;
figure
img=cat(3,R,G,B);
h=image(img)

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!