find bandwidth of Kernel Density Estimator

조회 수: 1 (최근 30일)
ha ha
ha ha 2018년 3월 6일
답변: ha ha 2018년 3월 6일
I'm doing kernel density estimator of the set of 1d data by using the blow code:
clear;clc;data=[randn(100,1)-10;randn(100,1)+10]; % normal mixture with two humps
[bandwidth,density,xmesh,cdf]=kde(data);
hold on;plot(xmesh',density);xlabel('data');ylabel('density');grid on; % plot kde with solve-the-equation bandwidth
The function "kde" is used as follow link:
https://www.mathworks.com/matlabcentral/fileexchange/14034-kernel-density-estimator
The example result is as this below picture.
Question: Now, I wanna find some value (data1, data2, bw1, bw2)from this result. Please see the figure. How can I find???
  댓글 수: 2
KSSV
KSSV 2018년 3월 6일
Read about findpeaks
ha ha
ha ha 2018년 3월 6일
Thank answer. correct

댓글을 달려면 로그인하십시오.

채택된 답변

ha ha
ha ha 2018년 3월 6일
findpeaks

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by