three plot one section

calculate

Vous suivez désormais cette soumission

%grafik-1
x=linspace(0,1,101);
y=5*cos(3*pi*x);
subplot(3,1,1);
plot(x,y,'r');
xlabel('X Değerleri');
ylabel('Y Değerleri');
grid on;
title('y=5*cos(3*pi*x)');
legend('y datas');
%grafik-2
x1=linspace(-5,5,101);
y1=1./(1+x1.^2);
subplot(3,1,2);
plot(x1,y1,'b');
xlabel('X_1 Değerleri');
ylabel('Y_1 Değerleri');
grid on;
title('y1=1./(1+x1.^2);');
legend('y1 datas');
%grafik-3
x2=linspace(-1.57,1.57,200);
y2=(sin(7*x2)-sin(5*x2))./(cos(7*x2)+cos(5*x2));
subplot(3,1,3);
plot(x2,y2,'b');
axis([-2,2,-10,10]);
xlabel('X_2 Değerleri');
ylabel('Y_2 Değerleri');
title('y2=(sin(7*x2)-sin(5*x2))./(cos(7*x2)+cos(5*x2))');
legend('y2 datas');
grid on;

Citation pour cette source

Arthur Matlabus (2026). three plot one section (https://fr.mathworks.com/matlabcentral/fileexchange/167401-three-plot-one-section), MATLAB Central File Exchange. Extrait(e) le .

Add the first tag.

Informations générales

Compatibilité avec les versions de MATLAB

  • Compatible avec toutes les versions

Plateformes compatibles

  • Windows
  • macOS
  • Linux
Version Publié le Notes de version Action
1.0.0