sinh(ax) plot
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sewa Singh
am 28 Mai 2021
Kommentiert: Sewa Singh
am 29 Mai 2021
How can i plot sinh(ax) with different values of a?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Asmit Singh
am 28 Mai 2021
Bearbeitet: Asmit Singh
am 28 Mai 2021
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
am 28 Mai 2021
Hi,
Use this synatx approach:
syms x
a = [?, ?, ?, ..];
% OR
a = input('a = ');
V = sinh(a(:)*x);
fplot(V, [xmin, xmax])
Good luck.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!