% Try out the Naive Bayes method on binary data derived from the Golub, et al % data set. trnx = load('genetrainx'); tstx = load('genetestx'); trny = load('genetrainy'); tsty = load('genetesty'); pred = nbayes (1, trnx, trny, tstx) [ pred', tsty ]