Plotting circles horizontally through entire range of x values on a constant y value

1 visualización (últimos 30 días)
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?

Respuesta aceptada

Star Strider
Star Strider el 2 de Mayo de 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 comentarios

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by