• Remix
  • Share
  • New Entry

on 21 Oct 2021
  • 7
  • 8
  • 0
  • 0
  • 153
figure('Color','b')
hold
Current plot held
[x,y] = meshgrid(-100:100);
u = x.*y.^.85;
v = exp(x.^2 -y.^2);
l = streamslice(x,y,v,u);
set(l,'LineWidth',2.5)
set(l,'Color','y');
axis off
%colormap(hot)
Remix Tree