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)

Sulaymon Eshkabilov
Hi,
Use this synatx approach:
syms x
a = [?, ?, ?, ..];
% OR
a = input('a = ');
V = sinh(a(:)*x);
fplot(V, [xmin, xmax])
Good luck.

类别

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