how to get a contour from a matrix that its values varies between zero and one?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
assume we have a random 10×10 two dimensional matrix that its values are between zero and one. how can I obtain a 2D contour from it?
0 Commenti
Risposte (1)
Star Strider
il 25 Ott 2019
Try this:
M = rand(10);
figure
contour(M)
figure
contourf(M)
Experiment to get the result you want.
0 Commenti
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!