sinh(ax) plot
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sewa Singh
el 28 de Mayo de 2021
Comentada: Sewa Singh
el 29 de Mayo de 2021
How can i plot sinh(ax) with different values of a?
0 comentarios
Respuesta aceptada
Más respuestas (2)
Asmit Singh
el 28 de Mayo de 2021
Editada: Asmit Singh
el 28 de Mayo de 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
el 28 de Mayo de 2021
Hi,
Use this synatx approach:
syms x
a = [?, ?, ?, ..];
% OR
a = input('a = ');
V = sinh(a(:)*x);
fplot(V, [xmin, xmax])
Good luck.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!