Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Fuzzy membership and defuzzification

3 ビュー (過去 30 日間)
Anon
Anon 2011 年 5 月 1 日
閉鎖済み: Sam Chak 2025 年 4 月 7 日
Dear all,
I know this question might be better placed at a statistics forum. Still, since I am used to code in Matlab I thought I first try it here.
I have a matrix P with N rows (objects) and C cols (classes) where each element refers to the probability, that the object n belongs to class c. Now, based on this information, I like to find out the expected value of number of objects in each class as well as its confidence intervals. The expected value m_c might be obtained by simply finding the maximum along each row such that.
B = false(size(P));
[~,ix] = max(P,[],2);
B(sub2ind(size(P),1:size(P,1),ix)) = true;
m_c = sum(B,1);
However, does anyone have an idea how I could calculate the confidence intervals of m_c? I would like to come towards a result that tells me that the expected number of objects in class c is m_c +/- x?
Help is greatly appreciated! Cheers, Anon

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by