필터 지우기
필터 지우기

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

조회 수: 17 (최근 30일)
SH
SH 2023년 4월 11일
댓글: Sam Chak 2023년 4월 11일
Hello, I have the Equation
Y= Cosh^2(X) - Sinh^2(X) , X= 32* Pi
How can i solve it in MATLAB
  댓글 수: 2
Sam Chak
Sam Chak 2023년 4월 11일
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])

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by