You are on page 1of 12

Graficas de Funciones Hiperbólicas

Comandos de Matlab

>> x=-4:.1:4;

>> y=sinh(x);

>> plot(x,y);

>> axis([-4,4,-4,4]);

>> title('GRAFICA DEL SENO HIPERBÓLICO');

>> legend('senh(x)');

>> grid on;

>> axis('square');

1
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Comandos en Matlab

>> x=-4:.1:4;

>> y=cosh(x);

>> plot(x,y);

>> axis([-4,4,0,5]);

>> title('GRAFICA DEL COSENO HIPERBÓLICO');

>> legend('cosh(x)');

>> grid on;

>> axis('square');

2
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Comandos en Matlab

>> x=-4:.1:4;

>> y=tanh(x);

>> plot(x,y);

>> title('GRAFICA DE LA TANGENTE HIPERBÒLICA');

>> legend('tanh(x)');

>> grid on;

3
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Comandos en Matlab

>> x=-10:.1:10;

>> y=coth(x);

>> plot(x,y);

>> axis([-10,10,-10,10]);

>> title('GRAFICA DE LA COTANGENTE HIPERBÓLICA');

>> legend('ctgh(x)');

>> grid on;

4
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Comandos en Matlab

>> x=-10:.1:10;

>> y=sech(x);

>> plot(x,y);

>> axis([-10,10,-10,10]);

>> title('GRAFICA DE LA SECANTE HIPERBÓLICA');

>> legend('sech(x)');

>> grid on;

5
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Comandos de Matlab

>> x=-10:.1:10;

>> y=csch(x);

>> plot(x,y);

>> title('GRAFICA DE LA COSECANTE HIPERBÓLICA');

>> legend('csch(x)');

>> grid on;

Comandos de Matlab

6
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

>> x=-10:.1:10;

>> y=asinh(x);

>> plot(x,y);

>> title('GRAFICA DEL SENO HIPERBÓLICO INVERSO');

>> legend('arcsenh(x)');

>> grid on;

Comandos de Matlab

>> x=-10:.1:10;

7
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

>> y=acosh(x);

>> plot(x,y);

Warning: Imaginary parts of complex X and/or Y arguments ignored

>> axis([-10,10,-10,10]);

>> title('GRAFICA DEL COSENO HIPERBÓLICO INVERSO');

>> legend('arccosh(x)');

>> grid on;

Comandos de Matlab

>> x=-10:.1:10;

8
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

>> y=atanh(x);

>> plot(x,y);

Warning: Imaginary parts of complex X and/or Y arguments ignored

>> title('GRAFICA DE LA TANGENTE HIPERBÓLICA INVERSA');

>> legend('arctanh(x)');

>> grid on;

Comandos de Matlab

>> x=-10:.1:10;

>> y=acoth(x);

9
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

>> plot(x,y);

Warning: Imaginary parts of complex X and/or Y arguments ignored

>> title('GRAFICA DE LA COTANGENTE HIPERBÓLICA INVERSA');

>> legend('arcctgh(x)');

>> grid on;

Comandos de Matlab

>> x=-10:.1:10;

>> y=asech(x);

>> plot(x,y);

10
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

Warning: Imaginary parts of complex X and/or Y arguments ignored

>> axis([-10,10,-10,10]);

>> title('GRAFICA DE LA SECANTE HIPERBÓLICA INVERSA');

>> legend('arcsech(x)');

>> grid on;

Comandos de Matlab

>> x=-10:.1:10;

>> y=acsch(x);

>> plot(x,y);

11
Moreno Sánchez Green Kelvin 1CV10
Graficas de Funciones Hiperbólicas

>> title('GRAFICA DE LA COSECANTE HIPERBÓLICA INVERSA');

>> legend('arccsch(x)');

>> grid on;

12
Moreno Sánchez Green Kelvin 1CV10

You might also like