- /
-
Flag of Ghana !
on 31 Oct 2021
- 0
- 46
- 0
- 0
- 222
G=zeros(300, 500, 3);
G=uint8(G);
G(1:100, :, 1)=255;
G(1:100, :, 2:3)=0;
G(101:200, :, 1:2)=255;
G(101:200, :, 3)=0;
G(201:300, :, 1:2:3)=0;
G(201:300, :, 2)=108;
imshow(G);
hold on
plot(250,150,'p','markers',66,'markerf','k');
axis equal off;