This file is indexed.

/usr/share/octave/site/m/octave-epstk/eimgzoom.m is in octave-epstk 2.4-3.

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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
%%NAME
%%  eimgzoom  - resize image with linear interpolation
%%              (note: use 'ematrsnn' for a quick resize)     
%%
%%SYNOPSIS
%%  [newimage newcolormap]=eimgzoom(image,colormap,scale)
%%
%%PARAMETER(S)
%%  image        old image matrix 
%%  colormap     color table
%%  scale        scale factor (1=no resize, 2=double size, 0.5=half size)
%%               or vector [newRows newColumns] 
%%  newimage     new image matrix 
%%  newcolormap  new colormap
%% 
% written by stefan.mueller@fhr.fraunhofer.de (C) 2010
function [newimage,newcolormap]= eimgzoom (image,colormap,scale)
  if (nargin ~= 3)
    eusage('[newimage newcolormap] = eimgzoom(image,colormap,scale)');
  end

  eglobpar
  if exist('eFac')
    if isempty(eFac)
      einit;
    end
  else
    einit;
  end
  oldSize=size(image);
  if size(scale,2)>1
    newSize=scale(1,1:2);
  else
    newSize=fix(oldSize*scale);
  end
  if colormap(1,1)<0
    [r g b]=ergbsplitt(image);
  else
    image=reshape(image,1,oldSize(1)*oldSize(2));
    cm=colormap(:,1);
    r=reshape(cm(image),oldSize(1),oldSize(2));
    cm=colormap(:,2);
    g=reshape(cm(image),oldSize(1),oldSize(2));
    cm=colormap(:,3);
    b=reshape(cm(image),oldSize(1),oldSize(2));
  end
   r=ematrsli(r,newSize(1),newSize(2));
   g=ematrsli(g,newSize(1),newSize(2));
   b=ematrsli(b,newSize(1),newSize(2));
  newimage=bitshift(fix(r*255),16)+bitshift(fix(g*255),8)+fix(b*255);
  if colormap(1,1)<0
    newcolormap=-1;
  else
    [newimage newcolormap]=ergb2idx(newimage);
  end