/usr/share/freemat/toolbox/test/self.m is in freemat-data 4.0-5build1.
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 | function y = self(n)
if (n>1)
y = n + self(n-1);
printf('y is %d\n',y);
else
y = 1;
printf('y is initialized to one\n');
keyboard
end
|