How can i have contour lines invisible in contourf?
70 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Eyal Barnea
il 11 Giu 2017
Risposto: Stalin Samuel
il 11 Giu 2017
Lately I purchased a 2017a student licence. Until then I used the institution's licence for 2016a where I could have lines invisible by setting "linewidth" to zero. The 2017a version alerts for error when I use this method. Is there another way to make the lines invisable?
1 Commento
Risposta accettata
Star Strider
il 11 Giu 2017
In R2017a, set 'LineStyle' to 'none':
figure(1)
Z = peaks(20);
contourf(Z,10, 'LineStyle','none')
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Contour Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!