Following is the error in my program while calculating ROC
Afficher commentaires plus anciens
I have attached my program files
Index exceeds matrix dimensions.
Error in ROC (line 16)
selfVerification(i) = sum(dataVerify(initial:initial+9,i)); %9
Error in maintotaldemo (line 105)
[FAR,FRR] = ROC(AVM,minThreshold,maxThreshold);
5 commentaires
KSSV
le 15 Oct 2018
Why don't you keep all files in a folder, zip them and attach? Users have to download individual file and check...extra work..:|
KSSV
le 15 Oct 2018
dataVerify is a logical matrix of dimension 40*5. YOu are changing the index initial by using:
initial = i*10+1;
And you are extracting values from it using:
sum(dataVerify(initial:initial+9,i));
After few iterations initial+9 is going beyond size i.e more then 40, so the error. If we know the logic behind or what you are trying to do..then we can help.
Balaji M. Sontakke
le 15 Oct 2018
Modifié(e) : Walter Roberson
le 27 Oct 2018
Balaji M. Sontakke
le 16 Oct 2018
Balaji M. Sontakke
le 17 Oct 2018
Réponses (0)
Catégories
En savoir plus sur Detection dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!