sinh(ax) plot
2 次查看(过去 30 天)
显示 更早的评论
How can i plot sinh(ax) with different values of a?
0 个评论
采纳的回答
更多回答(2 个)
Asmit Singh
2021-5-28
编辑:Asmit Singh
2021-5-28
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
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!