0

I am searching for an example that implement FKNN, I found this function

as

function [predicted,memberships, numhits] = fknn(data, labels, test, ...
        testlabels, k_values, info, fuzzy)

But I cant call that function.. any example will be more than appreciated.

Ali_Iraqy
  • 11
  • 4
  • I am searching for that code but I can't find – HMagdy Apr 01 '14 at 18:44
  • 1
    % [Y,MEMS,HITS] = FKNN(DATA, LABELS, TEST, TESTLABELS, K, INFO, FUZZY) If % you don't want to do "fuzzy" k-nn, then give FUZZY as 'false'. % % This m-file is capable of testing several k-values simultaneously. If % you pass a vector of k-values, rather than a single scalar, in K, then % each output variable is populated accordingly. So, if you give K as % [5 10 15], then Y becomes M-by-3, MEMS M-by-C-by-3 and HITS 3-by-1. – Ali_Iraqy Apr 01 '14 at 18:59

0 Answers0