Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
%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;
Zitieren als
Arthur Matlabus (2026). three plot one section (https://de.mathworks.com/matlabcentral/fileexchange/167401-three-plot-one-section), MATLAB Central File Exchange. Abgerufen .
Allgemeine Informationen
- Version 1.0.0 (1,26 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.0.0 |
