how to make the contour line more curvy
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
The contour line is straight, how to make it more curvy? I have uploaded the image i and raw data.
2 commentaires
DGM
le 10 Mar 2024
It's not clear how your data is arranged or whether this is even the same data or all that's required to plot it. There's only one 63x189 matrix in the file.
Neither 63 nor 189 are integer-divisible by 12, so it's hard to guess whether this needs to be reshaped. It doesn't look like it does. So how did you plot this? If there's other information needed, please include it.
Réponses (1)
VBBV
le 10 Mar 2024
Modifié(e) : VBBV
le 10 Mar 2024
xdata % your x data
ydata % your y data
zdata % your z data
v = min(min(zdata)):1:max(max(zdata)) % add finer step size for smoother /curvier lines
contourf(xdata,ydata,zdata,v) % use additional argument
3 commentaires
VBBV
le 10 Mar 2024
Modifié(e) : VBBV
le 10 Mar 2024
From the figure attachment the data looked like it's sufficiently smoothed, but was plotted at a coarse step. Yes, if the data is coarsely spaced that option doesn't smooth as you told.
@yuxuan , you can try this function to make the lines more curvy given in this link.
Mathieu NOE
le 26 Avr 2024
have a look at
or there are alternatives on the Fex , like :
Voir également
Catégories
En savoir plus sur Contour Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!