- /
- 
        Psychedelic
        on 9 Oct 2021
        
        
 
    - 3
- 63
- 0
- 0
- 268
% This is a demo created by MathWorks community team. 
% Please do not vote on this demo entry
clc
 colormap ("summer");
 g = 0.1:0.1:10;
 h = g'*g;
 a=imagesc (g, g+5, cos (h/2));
 hold on;
 b=imagesc (-g, g+5, cos (h/2));
 c=imagesc (-g, -g'+5, cos (-h/2));
d=imagesc (g', -g'+5, cos (h/2));
caption='Feeling Groovy';
axis auto;
axis off
title (caption, 'FontSize', 20,'FontName','Georgia');


 

 
             
             
             
