How to find index of a cell in matlab?

조회 수: 1 (최근 30일)
S.A
S.A 2018년 4월 2일
답변: William Smith 2018년 4월 3일
Hello, I'm working on my project for matching of sketches to photos. I have done with feature extraction part using SURF. In the final step I need to match 10 sketches with 30 photos based on ranking using euclidean distance. I'm getting the output which is correct but partial. The index values are just getting stored for the 10th field, its not getting displayed or stored from 1 to 9 and its stored with value as 0's. I have attached that part of code module and image of output cell matrix here.

답변 (1개)

William Smith
William Smith 2018년 4월 3일
Why are you doing
[sd,Mayindex(10,:)]=sort(d);
Why not
[sd, MayIndex] = sort(d);

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by