You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
%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 .
General Information
- Version 1.0.0 (1.26 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0.0 |
