yaptığım odev kontrol edin bi gencler t=1:1:10; x=t.^2.*9+4*t-12; v=sin(t) a=cos(t) plot3(a,v,t) xlabel('hız') ylabel('ivme') zlabel('zaman') grid box on figure subplot(2,1,1) [X,T]=meshgrid(x,t); mesh(X) title('yol icin yuzeyin ağ grafiği') box on subplot(2,1,2) [X,T]=meshgrid(x,t); surf(X) title('yol icin 3 boyutlu yuzey grafiği') box on figure subplot(2,1,1) [A,T]=meshgrid(a,t); mesh(A) title('ivme icin yuzeyin ağ grafiği') box on subplot(2,1,2) [A,T]=meshgrid(a,t); surf(A) title('ivme icin 3 boyutlu yuzey grafiği') box on figure subplot(2,1,1) [V,T]=meshgrid(v,t); mesh(V) title('hız icin yuzeyin ağ grafiği') box on subplot(2,1,2) [V,T]=meshgrid(v,t); surf(V) title('hız icin 3 boyutlu yuzey grafiği') box on __________________