Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Find y values from x value.

1 visualización (últimos 30 días)
sreelekshmi ms
sreelekshmi ms el 3 de Mzo. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
If x is my x values how can I find corresponding y values, I am very much confused. Anybody, please help me.
clc;
clear;
clear obj;
data=xlsread('Glassxl.xlsx');
asc=sort(data);
minpts=6;
epsilon=4;
[idx, corepts] = dbscan(asc,epsilon,minpts);
gscatter(asc(:,1),asc(:,2),idx);
x=data(corepts);
  2 comentarios
KSSV
KSSV el 3 de Mzo. de 2020
Which column of data is x and y?
sreelekshmi ms
sreelekshmi ms el 3 de Mzo. de 2020
I only have this dataset. If I partition the data as X and Y. Then how can I find it?
If I partition the data is there any change occur in that x points?
From the above plot(dbscan figure) is there is any way to find that x and y values(from that corepts)? Please help me.
X=data(1:107);
Y=data(108:end);

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by