Community Profile

photo

David Schubert


Imperial College

Active since 2015

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
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 ...

9 years ago | 0

Answered
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...

9 years ago | 0

| accepted

Question


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...

9 years ago | 1 answer | 0

1

answer