three plot one section

calculate

You are now following this Submission

%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;

Cite As

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

Tags

Add Tags

Add the first tag.

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.0