- /
-
cos(ax - y) - sin(x^2 +ay^2) = 0
on 20 Nov 2023
- 9
- 9
- 0
- 0
- 193
drawframe(1);
Write your drawframe function below
function drawframe(f)
% Create array of parameter values
a = linspace(0,10,48);
% Solve equation
syms x y
eqn = cos(a(f)*x - y) - sin(x^2 + a(f)*y^2) == 0;
% Plot and set visual properties
fimplicit(eqn,[-8,8,-2,2], MeshDensity=500,LineStyle="-",Color=[.9 .7 .2]);
set(gca,'Color','k'); set(gcf,'Color','k');
end