フィルターのクリア

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

サインインしてコメントする。

タグ

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by