Connecting two points with a curved line
19 次查看(过去 30 天)
显示 更早的评论
I want to plot a bending moment diagram and need a curved line in my plot. If I have the (x,y) cordinates of the two points, how do I connect them with a curved line without knowing the function of the curved line(parabola)?
10 个评论
Bjorn Gustavsson
2019-11-25
Tertius, if you're that new to matlab take an hour or so to get through some introduction to matlab document or video or the like, that will be worth it for you - and since you'll get a grasp of
much more general stuff that is peripheral to this direct task you'll be better prepared to take on later problems.
Also: Welcome.
David Goodmanson
2019-11-25
good advice from Bjorn, and pay close attention to the difference between
^ and .^
回答(1 个)
Pravin Jagtap
2019-11-26
Hello Tertius
- In case of shear force and bending moment theory, there is a way to get the equation of shear force and bending moment for each section of beam i.e. shear force = f(x) or bending moment = f(x). (Note: Bending moment is one order higher than shear force in that sectoin of beam)
- Once you get the analytical equation of shear force and bending moment, you can consider the position i.e. x vector and use that vector to calculate shear force and bending moment vectors for plotting purpose using the analytical equation which you got in above step.
- Since your objective is to plot shear force and bending moment for a beam in one figure, you must generate above step for each section separately i.e. if you have 4 sections you need 4 pairs of 'x' and 'shear force' for a beam and using ‘hold on’ command you can plot all the sections of a beam in one figure.
- Please refer to following documentation for understanding how to use ‘plot’ and ‘hold on’ command:https://www.mathworks.com/help/matlab/creating_plots/using-high-level-plotting-functions.html
Kind Regards
~Pravin
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!