• Remix
  • Share
  • New Entry

on 21 Oct 2021
  • 2
  • 10
  • 2
  • 0
  • 121
[x,y] = meshgrid(-10:10);
u = x.*y;
v = exp(x.^2 -y.^2);
l = streamslice(x,y,v,u);
set(l,'LineWidth',2)
set(l,'Color','r');
axis off
Remix Tree