RandomPoints plot &scatter
1 次查看(过去 30 天)
显示 更早的评论
Bonjour,
Je besoin de tracer une figure qui contient 20 points randomisées dans une area [-100 100]. Je veux obtenir cette figure 10^6 càd 10^6 figures, chacune contient 20 points. pourriez vous m'aider,j'essaye d’utiliser la syntaxe rand(n)
merci
set(gca,'xtick',-100:20:100);
set(gca,'ytick',-100:20:100);
axis([-100 100 -100 100]);
grid
3 个评论
Image Analyst
2016-12-27
What does "I want to get this figure 10 ^ 6 càd 10 ^ 6 figures" mean? How many figures do you want to create with 20 points each in them? And don't say an array of a million by a million figures. You can't fit a billion figures on your screen.
采纳的回答
Image Analyst
2016-12-27
How about this:
x = 200 * rand(1,20) - 100;
y = 200 * rand(1,20) - 100;
plot(x, y, 'b*');
grid on;

更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series Objects 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!