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
2018-5-29
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 Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!