photo

David Schubert


Imperial College

自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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 前 | 0

已回答
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 前 | 0

| 已接受

提问


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 前 | 1 个回答 | 0

1

个回答