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!