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!