Plotting circles horizontally through entire range of x values on a constant y value
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Lorenne
am 2 Mai 2018
Kommentiert: Star Strider
am 3 Mai 2018
How do i plot circles for the entire range of the x values for a constant y value instead of a horizontal line through the range of x values?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 2 Mai 2018
I am not certain what you want.
Try this:
x = rand(10,1);
y = ones(size(x))*0.5;
figure
plot(x, y, 'o')
7 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!