/usr/lib/scilab-plotlib/macros/%pltlibH_p.sci is in scilab-plotlib 0.42-1.
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 %pltlibH_p(h)
if ~is_handle_valid(h.handle)
printf('handle is no more valid\n');
else
if length(h.handle)==1
printf('Plotlib graphic handle of %s type\n',h.handle.type);
else
printf('%d x %d matrix of Plotlib graphic handles of type:\n',size(h.handle));
for i=1:size(h.handle,1)
printf('\n');
for j=1:size(h.handle,2)
printf('%-9s',h.handle(i,j).type);
end
end
end
end
endfunction
|