find the inflection point of a curve 3D (set of nodes) in matlab
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alberto Acri
el 3 de Jun. de 2024
How can I determine the inflection point of a set of nodes generating a curve in 3D space?
load curve_1.mat
curve_x = curve_1;
figure
plot3(curve_x(:,1),curve_x(:,2),curve_x(:,3),'k.','Markersize',10)
hold on
plot3(curve_x(:,1),curve_x(:,2),curve_x(:,3),'-r','LineWidth',2)
hold off
grid off
axis equal
Before determining the inflection points, is it possible to make the curve ‘curve_x’ smoother (more like a curve) since the nodes are not placed at a certain distance from each other?
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Spline Postprocessing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!