Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
x = -10:0.01:10;
y1 = sin(x);
y2 = (cos(2.*x) - sin(2.*x));
y3 = cos(2.*x);
y4 = (e.^(-x).*sin(x));
y5 = e.^(-x);
y6 = (e.^(-2.*x).*sin(x+pi));
subplot(3,2,1)
plot(x,y1)
xlabel('x axis')
ylabel('y axis')
title('sinx')
grid
subplot(3,2,2)
plot(x,y2)
xlabel('x axis')
ylabel('y axis')
title('cos2x-sin2x')
grid
subplot(3,2,3)
plot(x,y3)
xlabel('x axis')
ylabel('y axis')
title('cos2x')
grid
subplot(3,2,4)
plot(x,y4)
xlabel('x axis')
ylabel('y axis')
title('e^-x(sinx)')
grid
subplot(3,2,5)
plot(x,y5)
xlabel('x axis')
ylabel('y axis')
title('e^-x')
grid
subplot(3,2,6)
plot(x,y6)
xlabel('x axis')
ylabel('y axis')
title('e^-2x(sin(x+pi))')
grid
Thank you, Jofel, for shattering the illusion, for showing me a world beyond the confines of my inherited faith...