Installer Steam
Logg inn
|
språk
简体中文 (forenklet kinesisk)
繁體中文 (tradisjonell kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tsjekkisk)
Dansk (dansk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spania)
Español – Latinoamérica (spansk – Latin-Amerika)
Ελληνικά (gresk)
Français (fransk)
Italiano (italiensk)
Bahasa Indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (nederlandsk)
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasil)
Română (rumensk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (vietnamesisk)
Українська (ukrainsk)
Rapporter et problem med oversettelse
⠅⠊⠐⠘⠜⠸⠰⠢⡢⢋⢎⡳⣝⣯⡯⣎⢗⢝⡝⡗⣟
⠄⠄⠄⠈⠐⠐⠐⡐⡨⡢⡳⡽⡽⣺⡯⣿⡽⣮⣎⢙⢑
⠄⠄⠄⠄⡀⡢⡑⡜⡜⣜⣕⢯⡫⣗⡯⣷⣻⣻⣾⡂⠐
⠄⠄⢀⢐⠰⡐⡕⡕⣕⢗⢮⡳⡽⡵⣻⡺⣽⣳⡿⡝
⠄⠄⠠⠄⠂⠡⢈⠈⠈⠈⠁⠉⢊⢝⢮⠊⠁⣁⡩⠁
⢀⠈⡀⠄⠈⠄⠐⠈⠄⠄⠄⡀⢂⡳⡽⠄⢀⢀⣜
⠄⠂⡐⠈⠄⡀⠂⡐⠄⠄⠂⠄⡂⣟⣿⢔⡔⣔⣿
⢀⠡⠠⠡⠑⢄⠕⡐⡅⡕⡡⠡⢂⢺⣽⣟⡾⡽⡎
⠄⡀⠂⠨⠈⡂⠅⢕⠑⢌⠐⠨⡀⢇⣿⡮⡫⡫⠂
⠄⡀⠄⠁⢂⠠⠁⠂⠅⢂⠄⠁⠈⠈⠊⡫⡪⡊
⠄⠄⡀⢈⠄⠄⢈⠄⡁⠄⠂⠁⠄⠂⢙⠈⠔
⡀⠄⠄⠄⠐⠈⢀⠄⡀⢀⠐⠠⠐⠸⢸⠨
⠄⠠⠐⠄⠡⠈⡀⠄⢀⠂⠠⡀⡢⡪⠮
⢈⠐⢈⠄⠄⠐⠄⠐⠠⠈⠄⠂⠂⠁
⡐⢈⠠⠐⠄⠄⠠⠄⠄⠂⢁
⢂⢂⠐⢈⠠⠈⠄⠂⡂⠌⡰
⠢⠐⡈⠄⡐⢈⢀⠡⢐⢐⠬⣲⣻⣶⣦⣤⣄⡀
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...