3d Curve for 3 vectors

3 visualizaciones (últimos 30 días)
ola watad
ola watad el 27 de Abr. de 2023
Editada: Matt J el 27 de Abr. de 2023
hello,
i have a set three data vectors :
x=(datax)
y=(datay)
z=(dataz)
plotting the vectors with plot3d derives the green line displayed in the attached picture.
I want to connect the the point with a smooth curve (on axis z), not a surface,is there a way to do that ?
curve fitting did work fo me.
Thanks in advance
  2 comentarios
Matt J
Matt J el 27 de Abr. de 2023
Editada: Matt J el 27 de Abr. de 2023
curve fitting did work fo me.
Is your question why curve fitting didn't work? We cannot know without seeing your steps, and how you evaluated the result.
ola watad
ola watad el 27 de Abr. de 2023
My question is how to draw the line My be i did not preform curve fitting right i would like to have any suggestions

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 27 de Abr. de 2023
Editada: Matt J el 27 de Abr. de 2023
Data=[x(:).';y(:).';z(:).'];
w=width(Data);
XYZ=num2cell(spline(1:w,Data,linspace(1,w,10*w)),2);
plot3(XYZ{:});

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by