photo

David Schubert


Imperial College

Attivo dal 2015

Followers: 0   Following: 0

Messaggio

Statistica

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How can I find the average between two points?
input = [23; 45; 64; NaN; 32]; output = input; idx = find(isnan(input)); output(idx) = (input(idx+1)+input(idx-1))/2 ...

circa 9 anni fa | 0

Risposto
make a column matrix with outputs of a for loop
Use diag(Q) to obtain only the eigenvalues on the diagonal of Q, and then concatenate: mat = []; for i=1:5 a=[1 2...

circa 9 anni fa | 0

| accettato

Domanda


SVM: How is the classification error with leave-one-out cross validation calculated?
I am trying to understand what matlab's leave-one-out cross validation of an SVM is doing by comparing it to a leave-one-out cro...

circa 9 anni fa | 1 risposta | 0

1

risposta