sinh(ax) plot

7 visualizaciones (últimos 30 días)
Sewa Singh
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?

Respuesta aceptada

Adam Danz
Adam Danz el 28 de Mayo de 2021
Editada: Adam Danz el 28 de Mayo de 2021
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 comentarios
Sewa Singh
Sewa Singh el 29 de Mayo de 2021
a=[10:10:100] is given.i tried but dimension not matching error came.
Sewa Singh
Sewa Singh el 29 de Mayo de 2021
Thanks in advance

Iniciar sesión para comentar.

Más respuestas (2)

Asmit Singh
Asmit Singh el 28 de Mayo de 2021
Editada: Asmit Singh el 28 de Mayo de 2021
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 comentario
Sewa Singh
Sewa Singh el 29 de Mayo de 2021
Thank you very much ..it helped me

Iniciar sesión para comentar.


Sulaymon Eshkabilov
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.
  1 comentario
Sewa Singh
Sewa Singh el 29 de Mayo de 2021
Thank you very much...it helped me

Iniciar sesión para comentar.

Etiquetas

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by