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.

回答 (1 件)

Akira Agata
Akira Agata 2018 年 5 月 29 日

0 投票

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)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

質問済み:

2018 年 5 月 28 日

回答済み:

2018 年 5 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by