Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
⠅⠊⠐⠘⠜⠸⠰⠢⡢⢋⢎⡳⣝⣯⡯⣎⢗⢝⡝⡗⣟
⠄⠄⠄⠈⠐⠐⠐⡐⡨⡢⡳⡽⡽⣺⡯⣿⡽⣮⣎⢙⢑
⠄⠄⠄⠄⡀⡢⡑⡜⡜⣜⣕⢯⡫⣗⡯⣷⣻⣻⣾⡂⠐
⠄⠄⢀⢐⠰⡐⡕⡕⣕⢗⢮⡳⡽⡵⣻⡺⣽⣳⡿⡝
⠄⠄⠠⠄⠂⠡⢈⠈⠈⠈⠁⠉⢊⢝⢮⠊⠁⣁⡩⠁
⢀⠈⡀⠄⠈⠄⠐⠈⠄⠄⠄⡀⢂⡳⡽⠄⢀⢀⣜
⠄⠂⡐⠈⠄⡀⠂⡐⠄⠄⠂⠄⡂⣟⣿⢔⡔⣔⣿
⢀⠡⠠⠡⠑⢄⠕⡐⡅⡕⡡⠡⢂⢺⣽⣟⡾⡽⡎
⠄⡀⠂⠨⠈⡂⠅⢕⠑⢌⠐⠨⡀⢇⣿⡮⡫⡫⠂
⠄⡀⠄⠁⢂⠠⠁⠂⠅⢂⠄⠁⠈⠈⠊⡫⡪⡊
⠄⠄⡀⢈⠄⠄⢈⠄⡁⠄⠂⠁⠄⠂⢙⠈⠔
⡀⠄⠄⠄⠐⠈⢀⠄⡀⢀⠐⠠⠐⠸⢸⠨
⠄⠠⠐⠄⠡⠈⡀⠄⢀⠂⠠⡀⡢⡪⠮
⢈⠐⢈⠄⠄⠐⠄⠐⠠⠈⠄⠂⠂⠁
⡐⢈⠠⠐⠄⠄⠠⠄⠄⠂⢁
⢂⢂⠐⢈⠠⠈⠄⠂⡂⠌⡰
⠢⠐⡈⠄⡐⢈⢀⠡⢐⢐⠬⣲⣻⣶⣦⣤⣄⡀
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...