How graph using for loop

2 次查看(过去 30 天)
it is possible to classify the data of a graph using the for loops?
For example so that the data of this graph if they paint four different colors ( x> 90 y<90, another x> 90 y> 90, another x<90 y<90,another x<90 y> 90)
x=-100+(100+100)*rand(1500,1);
y=-100+(100+100)*rand(1500,1);
plot(x,y,'or')

采纳的回答

KSSV
KSSV 2019-2-8
Read about kmeans
x=-100+(100+100)*rand(1500,1); %Un vector de 1500 renglones x 1 fila, que muestra nuemros random desde -100 a 100
y=-100+(100+100)*rand(1500,1); %Otro vector de 1500 renglones x 1 fila, qu mustra numeros random dl-110 al 100
plot(x,y,'or')
title('Numeros Aleatorios entre -100 y 100','color','green')
idx = kmeans([x y],4) ;
figure
hold on
for i = 1:4
plot(x(idx==i),y(idx==i),'.','color',rand(1,3)) ;
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by