This file is indexed.

/usr/share/octave/packages/3.2/miscellaneous-1.0.11/map.m is in octave-miscellaneous 1.0.11-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
 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
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
## Copyright (C) 2003 Tomer Altman
## Copyright (C) 2007 Muthiah Annamalai
##
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public
## License as published by the Free Software Foundation;
## either version 2, or (at your option) any later version.
##
## This software is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied
## warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE.  See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public
## License along with this software; see the file COPYING.  If not,
## see <http://www.gnu.org/licenses/>.


## -*- texinfo -*-
## @deftypefn{Function File} {@var{result} = } map ( fun_handle, varargin ) 
## @cindex  
## 
## usage: result = map ( FUN_HANDLE, ARG1, ... )
##
## @code{map}, like Lisp's ( & numerous other language's ) function for
## iterating the result of a function applied to each of the data
## structure's elements in turn. The results are stored in the
## corresponding input's place. For now, just will work with cells and
## matrices, but support for structs are intended for future versions.
## Also, only "prefix" functions ( like @code{min (a, b, c, ...)} ) are
## supported. FUN_HANDLE can either be a function name string or a
## function handle (recommended).
##
## Example:
## @example
##
## octave> A
## A 
## @{
##   [1,1] = 0.0096243
##   [2,1] = 0.82781
##   [1,2] = 0.052571
##   [2,2] = 0.84645
## @}
## octave> B
## B =
## @{
##   [1,1] = 0.75563
##   [2,1] = 0.84858
##   [1,2] = 0.16765
##   [2,2] = 0.85477
## @}
## octave> map(@@min,A,B)
## ans =
## @{
##   [1,1] = 0.0096243
##   [2,1] = 0.82781
##   [1,2] = 0.052571
##   [2,2] = 0.84645
## @}
## @end example
## @seealso{reduce, match, apply}
## @end deftypefn

## Author: Tomer Altman
## Keywords: map matrix cell 
## Maintainer: Tomer Altman
## Created: November 15, 2003
## Version: 0.1

function return_type = map (fun_handle, data_struct, varargin)
  if (nargin >= 1)
    try
      if (ischar (fun_handle))
	fun_handle = eval (strcat ("@", fun_handle));
      end
      fstr = typeinfo (fun_handle);
    catch
      error ("Error: Cannot find function handle, or funtion doesnt exist");
    end_try_catch
  endif

  if (nargin < 2)
    error ("map: incorrect number of arguments; expecting at least two");
  elseif (strcmp (fstr, "function handle") == 0)
    error ("map: first argument is not a valid function handle");
  elseif (!(isnumeric (data_struct) || iscell (data_struct)))
    error ("map: second argument must be either a matrix or a cell object");
  endif

  [rows, cols] = size (data_struct);
  typecell = 0;
  
  if (iscell (data_struct))
    typecell = 1;
    return_type = cell (rows, cols);
  else
    typecell = 0;
    return_type = zeros (rows, cols);
  endif
  
  otherdata = length (varargin);
  val = cell (1, otherdata+1);
  val (:) = 0;

  if (typecell)
    if (otherdata >= 1)
      for i = 1:rows	  
	for j = 1:cols
	  val {1} = data_struct {i, j};
	  for idx = 2:otherdata+1
	    val {idx} = varargin {idx-1}{i,j};
	  endfor
  	  return_type {i,j} = apply (fun_handle, val);
	endfor
      endfor
    else
      for i = 1:rows	  
	for j = 1:cols	    
	  return_type {i,j} = fun_handle (data_struct {i,j});
	endfor
      endfor
    endif
  else
    if (otherdata >= 1)
      for i = 1:rows
	for j = 1:cols
	  val {1} = data_struct (i,j);
	  for idx = 2:otherdata+1
	    val {idx} = varargin {idx-1}(i,j);
	  endfor
  	  return_type (i, j) = apply (fun_handle, val);
	endfor
      endfor
    else
      for i = 1:rows
	for j = 1:cols
	  return_type (i, j) = fun_handle (data_struct (i, j));
	endfor
      endfor
    endif
  endif

endfunction

%!test
%! assert(map(@min,[1 2 3 4 5],[5 4 3 2 1]), [1 2 3 2 1])
%! assert(map(@min,rand(1,5),[0 0 0 0 0]), [0 0 0 0 0])
%! assert(map(@(x,y) (sin(x).^2 + cos(y).^2),-pi:0.5:+pi,-pi:0.5:+pi),ones(1,13))