Random points between lines

1 回表示 (過去 30 日間)
anabel atah
anabel atah 2020 年 1 月 5 日
回答済み: Star Strider 2020 年 1 月 5 日
How can I plot 20 random points ? like the picture:

回答 (1 件)

Star Strider
Star Strider 2020 年 1 月 5 日
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])

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by