Get coordinates of points generated by spline curve
1 回表示 (過去 30 日間)
古いコメントを表示
Hello everyone,
Because I need to use a curve which is from a book, so I'm trying to plot this curve on matlab in order to use it after that.
Indeed, with coordinates of some points I know, I've succeeded to plot the curve with spline function.
The problem is that I need now to recover some points of the curve which weren't defined at the beginning for the plot. Can I do that?
I've tried with:
yMin = min(y); yMax = max(y); ylim([0 yMax]); yMin = min(y) indexAtMin = find(y == yMin); xAtMin = x(indexAtMin)
But this works only with points defined before!
Thank you for your answer.
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Splines についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!