Smooth curve between points in 3D
14 views (last 30 days)
Show older comments
I have a 3D plot (plot3). Along the z axis I have discrete points, Each time the function is called, a point is plotted along the z axis.I want a smooth curve along those points. Kindly help. Thanks
0 Comments
Answers (1)
Walter Roberson
on 14 Nov 2013
The problem with a smooth curve is that you need to know the curvature at each (3D) point in-between the known points. Which is equivalent to having to calculate the function at each of those points. Or, if you know the formula for the function, taking the partial derivatives and working out from them how far along you can go before continuing on in a straight line would be "too far" from the real curve and putting an adjustment there.
Some people use cubic splines to draw smooth curves. I my view, cubic splines "look pretty" but are unjustified if determining the actual value at any particular intermediate point is going to happen. Don't confuse the approximation with the real thing.
0 Comments
See Also
Categories
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!