This file is indexed.

/usr/share/octave/packages/secs2d-0.0.8/Utilities/Umshcreatemesh.m is in octave-secs2d 0.0.8-5.

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 omesh=Umshcreatemesh(geometry,scalefactor,refine);

##
##
## omesh=Umshcreatemesh(geometry,scalefactor);
##
##

if nargin==2
  refine =1;
end

system(["gmsh -format msh1 -2 -scale " num2str(scalefactor) " -clscale ",...
	num2str(refine) " " geometry ".geo"]);

omesh= Umsh2pdetool(geometry);
omesh = Umeshproperties(omesh);