how to get a contour from a matrix that its values varies between zero and one?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Star Strider
le 25 Oct 2019
Try this:
M = rand(10);
figure
contour(M)
figure
contourf(M)
Experiment to get the result you want.
0 commentaires
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!