필터 지우기
필터 지우기

Finding threshold values for classification

조회 수: 4 (최근 30일)
Jimmy Neutron
Jimmy Neutron 2021년 11월 19일
편집: Jimmy Neutron 2021년 11월 20일
I have been struggling too much on a book question that I know the answer, but cannot find the mathematical solution. The question goes like this:
A device uses a camera which has discovered three spectral peaks that reflect different types of particles. Each spectra follows a normal distribution. The parametric distributions of the three particle classes are N(7,2*2), N(15,5*5), and N(3,5*5). The manufacturers need help to define the thresholds to perform robust classification. They wish to perform a parametric classification of the three classes.
What signal thresholds should they use?
Answer: 4.24 and 10.29
The previous question was similar, but it asked for the minimum distance classification instead of the parametric classification. For this I ploted the peaks as lines and then found the average between those lines and got that the thresholds should be 5 and 11, which is correct:
% N1 = N(7,2*2);
% N2 = N(15,5*5);
% N3 = N(3,5*5);
signal1 = (3+7)/2; % N3-N2
signal2 = (15+7)/2; % N1-N2
figure
hold on
xline(signal2, 'r');
xline(signal1, 'r');
xline(7)
xline(15)
xline(3)
I have been trying to solve it for the parametric classification, but have no idea how to do it. Could someone please point me in the right direction?

답변 (1개)

yanqi liu
yanqi liu 2021년 11월 20일
sir,use for classification,may be use the svm or random forest ……

카테고리

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