curvspace

Generate evenly spaced points along an existing curve in 2D or 3D.

現在この提出コンテンツをフォロー中です。

CURVSPACE(P,N) generates N points that interpolates a curve (represented by a set of points) with an equal spacing. Each row of P defines a point, which means that P should be a n x 2 (2D) or a n x 3 (3D) matrix.
(Example)
x = -2*pi:0.5:2*pi;
y = 10*sin(x);
z = linspace(0,10,length(x));
N = 50;
p = [x',y',z'];
q = curvspace(p,N);

The above example creates 50 evenly spaced points along a sinusoidal curve.

引用

Yo Fukushima (2026). curvspace (https://jp.mathworks.com/matlabcentral/fileexchange/7233-curvspace), MATLAB Central File Exchange. に取得済み.

カテゴリ

Help Center および MATLAB AnswersCreating and Concatenating Matrices についてさらに検索

一般的な情報

MATLAB リリースの互換性

  • すべてのリリースと互換性あり

プラットフォームの互換性

  • Windows
  • macOS
  • Linux
バージョン 公開済み リリース ノート Action
1.0.0.0

BSD License added.