How graph using for loop

2 views (last 30 days)
Dionisio Mendoza
Dionisio Mendoza on 8 Feb 2019
Edited: Dionisio Mendoza on 15 Feb 2019
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')

Accepted Answer

KSSV
KSSV on 8 Feb 2019
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

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!