How graph using for loop

2 Ansichten (letzte 30 Tage)
Dionisio Mendoza
Dionisio Mendoza am 8 Feb. 2019
Bearbeitet: Dionisio Mendoza am 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')

Akzeptierte Antwort

KSSV
KSSV am 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

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by