/usr/share/freemat/toolbox/test/varoutfunc.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 [varargout] = varoutfunc
switch(nargout)
case 1
varargout = {'one of one'};
case 2
varargout = {'one of two','two of two'};
case 3
varargout = {'one of three','two of three','three of three'};
end
|