How do I smooth out a surface distribution plot?
Mostra commenti meno recenti
Looks like my data has some outliers that should be removed.
Instead of doing that manually, is there a way I can let Matlab do it? Thanks!

In case you need, below is the code to plot the map:
[X, Y] = meshgrid(linspace(min(lon),max(lon),100),linspace(min(lat),max(lat),100));
Z = griddata (lon, lat, V, X, Y);
[C1, h1] = contourf (X, Y, Z, [0:0.1:4], 'LineStyle', 'none' );
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Contour Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!