sinh(ax) plot

조회 수: 2 (최근 30일)
Sewa Singh
Sewa Singh 2021년 5월 28일
댓글: Sewa Singh 2021년 5월 29일
How can i plot sinh(ax) with different values of a?

채택된 답변

Adam Danz
Adam Danz 2021년 5월 28일
편집: Adam Danz 2021년 5월 28일
If this is something the documentation doesn't answer you'll have to elaborate. We don't know what "a" is in your question.
  댓글 수: 2
Sewa Singh
Sewa Singh 2021년 5월 29일
a=[10:10:100] is given.i tried but dimension not matching error came.
Sewa Singh
Sewa Singh 2021년 5월 29일
Thanks in advance

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

추가 답변 (2개)

Asmit Singh
Asmit Singh 2021년 5월 28일
편집: Asmit Singh 2021년 5월 28일
You can look at the plotting documentation to know more. Heres a simple example.
x = 0:pi/100:2*pi;
% a = 2
y = sinh(2*x);
plot(x,y)
hold on
%a = 5
y = sinh(5*x);
plot(x,y)
  댓글 수: 1
Sewa Singh
Sewa Singh 2021년 5월 29일
Thank you very much ..it helped me

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


Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 5월 28일
Hi,
Use this synatx approach:
syms x
a = [?, ?, ?, ..];
% OR
a = input('a = ');
V = sinh(a(:)*x);
fplot(V, [xmin, xmax])
Good luck.
  댓글 수: 1
Sewa Singh
Sewa Singh 2021년 5월 29일
Thank you very much...it helped me

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

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

태그

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by