How can i plot sinh(ax) with different values of a?

 채택된 답변

Adam Danz
Adam Danz 2021년 5월 28일
편집: Adam Danz 2021년 5월 28일

0 개 추천

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일

0 개 추천

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일

0 개 추천

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

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

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

릴리스

R2015a

태그

질문:

2021년 5월 28일

댓글:

2021년 5월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by