필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Find y values from x value.

조회 수: 1 (최근 30일)
sreelekshmi ms
sreelekshmi ms 2020년 3월 3일
마감: MATLAB Answer Bot 2021년 8월 20일
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
KSSV
KSSV 2020년 3월 3일
Which column of data is x and y?
sreelekshmi ms
sreelekshmi ms 2020년 3월 3일
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);

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by