Dear sir, i have matrix of distances(Euclidian) size 35 X 15, i want to calculate threshold value to determine accuracy.
조회 수: 1 (최근 30일)
이전 댓글 표시
i have matrix of distances(Euclidian) size 35 X 15 attached herewith, i want to calculate threshold of each column,to determine the recognition. I hope you have soluation of my problem, thanks..
댓글 수: 2
답변 (1개)
michael scheinfeild
2017년 11월 8일
x=[ 1 2 3; 5 1 2 ; 6 1 4; 9 2 1]
x =
1 2 3
5 1 2
6 1 4
9 2 1
>> c=x>3
c =
4×3 logical array
0 0 0
1 0 0
1 0 1
1 0 0
>> m=find(c)
m =
2
3
4
11
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!