Random points between lines
Mostrar comentarios más antiguos
How can I plot 20 random points ? like the picture:

Respuestas (1)
Star Strider
el 5 de En. de 2020
On approach:
x = rand(1, 20)*20;
y = rand(1, 20)*30;
figure
plot(x, y, '.r')
hold on
plot([20 20], ylim, '-b')
hold off
xlim([0 40])
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!