How do I smooth a curve on a surf plot?
Afficher commentaires plus anciens

I have been trying to "smooth" out this curve in MATLAB but have been unable to. The goal is to have a smoother curve depicted in this surf plot. Any ideas?
I have attached the code needed to make the figure to and I used the code below to generate this figure
surf(ZFF_vals, DFF_vals, Fin
Réponses (2)
KSSV
le 20 Mar 2022
surf(ZFF_vals, DFF_vals, Fin)
shading interp
1 commentaire
Andrew Stark
le 20 Mar 2022
Sulaymon Eshkabilov
le 20 Mar 2022
You can try smoothdata() with Gaussian, e.g.:
X = load('DFF_vals.mat');
Y = load('ZFF_vals.mat');
Z = load('Fin.mat');
Zsmooth = smoothdata(Z, 'gaussian', 25);
subplot(211)
mesh(X,Y,Z)
subplot(212)
mesh(X,Y, Zsmooth), view([30, 45, 30])
1 commentaire
Andrew Stark
le 20 Mar 2022
Catégories
En savoir plus sur Graphics Performance dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

