Ahora está siguiendo esta publicación
- Verá actualizaciones en las notificaciones de contenido en seguimiento.
- Podrá recibir correos electrónicos, en función de las preferencias de comunicación que haya establecido.
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.
Citar como
Yo Fukushima (2026). curvspace (https://la.mathworks.com/matlabcentral/fileexchange/7233-curvspace), MATLAB Central File Exchange. Recuperado .
Agradecimientos
Inspiración para: Interpolate Curve - Simple 2D or 3D Curve Interpolation, Kirchhoff Vortex Contour Dynamics Simulation
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y MATLAB Answers.
Información general
- Versión 1.0.0.0 (3,27 KB)
Compatibilidad con la versión de MATLAB
- Compatible con cualquier versión
Compatibilidad con las plataformas
- Windows
- macOS
- Linux
| Versión | Publicado | Notas de la versión | Action |
|---|---|---|---|
| 1.0.0.0 | BSD License added. |
