How graph using for loop

2 ビュー (過去 30 日間)
Dionisio Mendoza
Dionisio Mendoza 2019 年 2 月 8 日
編集済み: Dionisio Mendoza 2019 年 2 月 15 日
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 Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by