• Remix
  • Share
  • New Entry

on 20 Oct 2022
  • 8
  • 28
  • 0
  • 0
  • 173
f1 = @(x,y) sin(x)^8+cos(y)^4;
f2 = @(x,y) (sin(x)*cos(y))^0.5;
fcontour(f1,"LineWidth",3);
Warning: Function behaves unexpectedly on array inputs. To improve performance, properly vectorize your function to return an output with the same size and shape as the input arguments.
hold on
fcontour(f2,"LineWidth",3);
Warning: Function behaves unexpectedly on array inputs. To improve performance, properly vectorize your function to return an output with the same size and shape as the input arguments.
set(gca,'XTickLabels',{},'YTickLabels',{})
colormap hsv
Image
Remix Tree