How can I plot a few dots in matrix plot?
Show older comments
for example, I want to plot this one:

Accepted Answer
More Answers (1)
[X,Y] = meshgrid(6:6:24);
scatter(X, Y, 'b*')
xlim([0 30]); ylim([0 30])
1 Comment
Dan Kanyas
on 3 Dec 2021
Categories
Find more on Line Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

