This file is indexed.

/usr/share/octave/site/m/vlfeat/toolbox/xtest/vl_test_hikmeans.m is in octave-vlfeat 0.9.17+dfsg0-6build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
function results = vl_test_hikmeans(varargin)
% VL_TEST_IKMEANS
vl_test_init ;

function s = setup()
rand('state',0) ;
s.data = uint8(rand(2,1000) * 255) ;

function test_basic(s)
[tree, assign] = vl_hikmeans(s.data,3,100) ;
assign_ = vl_hikmeanspush(tree, s.data) ;
vl_assert_equal(assign,assign_) ;

function test_elkan(s)
[tree, assign] = vl_hikmeans(s.data,3,100,'method','elkan') ;
assign_ = vl_hikmeanspush(tree, s.data) ;
vl_assert_equal(assign,assign_) ;