This file is indexed.

/usr/share/octave/site/m/vlfeat/toolbox/xtest/vl_test_grad.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
18
19
function results = vl_test_grad(varargin)
% VL_TEST_GRAD
vl_test_init ;

function s = setup()
s.I = rand(150,253) ;
s.I_small = rand(2,2) ;

function test_equiv(s)
vl_assert_equal(gradient(s.I), vl_grad(s.I)) ;

function test_equiv_small(s)
vl_assert_equal(gradient(s.I_small), vl_grad(s.I_small)) ;

function test_equiv_forward(s)
Ix = diff(s.I,2,1) ;
Iy = diff(s.I,2,1) ;

vl_assert_equal(gradient(s.I_small), vl_grad(s.I_small)) ;