Borrar filtros
Borrar filtros

Compute The Following In Matlab: Y= Cosh^2(X) - Sinh^2(X) , X= 32* Pi

13 visualizaciones (últimos 30 días)
SH
SH el 11 de Abr. de 2023
Comentada: Sam Chak el 11 de Abr. de 2023
Hello, I have the Equation
Y= Cosh^2(X) - Sinh^2(X) , X= 32* Pi
How can i solve it in MATLAB
  2 comentarios
Sam Chak
Sam Chak el 11 de Abr. de 2023
I think you probably want to ask "Why does the hyperbolic trigonometric identity behave anomalously?" Especially when ...
x = 5*pi:0.00000001*pi:6*pi;
cosh2x = exp(-2*x)/4 + exp(2*x)/4 + 1/2;
sinh2x = exp(-2*x)/4 + exp(2*x)/4 - 1/2;
y = cosh2x - sinh2x;
subplot(211)
plot(x/pi, y), grid on, ylim([-0.5 2.5])
subplot(212)
plot(x/pi, y), grid on, ylim([-0.5 2.5]), xlim([5.957161 5.9571615])

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by