How can I plot a few dots in matrix plot?
Afficher commentaires plus anciens
for example, I want to plot this one:

Réponse acceptée
Plus de réponses (1)
[X,Y] = meshgrid(6:6:24);
scatter(X, Y, 'b*')
xlim([0 30]); ylim([0 30])
1 commentaire
Dan Kanyas
le 3 Déc 2021
Catégories
En savoir plus sur Line Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


