• Remix
  • Share
  • New Entry

  • Umar Hashmi

  • /
  • Face of Sine and cosine ... Just discovered.

on 8 Oct 2021
  • 2
  • 14
  • 1
  • 0
  • 198
clf;
colormap ("default");
g = 0.1:0.1:10;
h = g'*g;
imagesc (g, g, sin (h));
hold on;
plot (g, 11.0 * ones (size (g)));
imagesc (g, g+12, cos (h/2));
axis ([0 10 0 22]);
hold off;
title ("image, line, image w/hold()");
Image
Remix Tree