How to plot a hyperbolic equation?

I am a novice at Matlab and highly interested in learning more about Matlab. I would like to graph y=211.49-20.96 cosh 0.03291765x. Any advice would be very grateful. Thanks for your time and understanding.

Respuestas (1)

Akira Agata
Akira Agata el 29 de Mayo de 2018
The following is a simple example to plot your equation.
x = linspace(-10,10);
y = 211.49-20.96*cosh(0.03291765*x);
figure
plot(x,y)

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 28 de Mayo de 2018

Respondida:

el 29 de Mayo de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by