File: test_octave.m

package info (click to toggle)
shogun 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 8,688 kB
  • ctags: 6,563
  • sloc: cpp: 61,677; python: 5,233; sh: 2,767; makefile: 555; objc: 37
file content (15 lines) | stat: -rw-r--r-- 198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


function y = test_octave(filename)
  
  pos = max(findstr('/', filename));
  res = test_kernels(filename(pos+1:end));

  if(res == 0)
    sprintf('__OK__')
  else
    sprintf( '__ERR__')
  end