Surface fit of a 3d scatter plot

I have a m x 3 matrix, where the first column is the x coordinate, second is y, and third is z. I managed to create a 3D scatter plot using this data, but I can't get Matlab to draw a mesh surface that goes between the points. The relationships between the points are not mathematically controlled (they come from a biological assay), so the surface fitting would have to follow some sort of moving average or such. Is there anything out there that can do it for me?
Thanks in advance.

Réponses (2)

Sean de Wolski
Sean de Wolski le 12 Juil 2011

2 votes

doc griddata
No, more like:
x = your_matrix(:,1);
y = your_matrix(:,2);
z = your_matrix(:,3);
[xgrid ygrid] = meshgrid(1:5,1:10); %sample x and y ranges
z2 = griddata(x,y,z,xgrid(:),ygrid(:));
z2 = reshape(z2,size(xgrid));
You can also use TriScatteredInterp, though I haven't become a fan of it yet.

1 commentaire

Unless I'm misunderstanding the intentions, this is overly complicated. meshgrid will take an x and y vector as arguments and construct the grid from there.
[xgrid, ygrid] = meshgrid(x,y)
There's no need for the extra manipulation.

Connectez-vous pour commenter.

Hans
Hans le 12 Juil 2011

0 votes

Thanks.
You sure that works for my m x 3 matrix? Or should I convert it to something else first? Right now it's like this
[x y z; x1 y1 z1; x2 y2 z2;.... etc]

Catégories

En savoir plus sur Polar Plots dans Centre d'aide et File Exchange

Question posée :

le 12 Juil 2011

Commenté :

le 14 Avr 2016

Community Treasure Hunt

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

Start Hunting!

Translated by