/usr/share/gnudatalanguage/lib/mean.pro is in libgnudatalanguage0 0.9.6v2-1build1.
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 | ;$Id: mean.pro,v 1.4 2012/08/02 15:55:13 gilles-duvert Exp $
;
function MEAN, x, double=double, NaN=NaN, dimension=dimension
;
;+
;
; NAME: MEAN
;
; PURPOSE:
; Calculates the mean of the input data
;
; CATEGORY:
; Mathematics: Statistics
;
; CALLING SEQUENCE:
; Result=mean(x)
;
; KEYWORD PARAMETERS:
; DOUBLE : Keyword for double precision calculation
; NAN : Flag to treat IEEE Special Floating-Point values as missing data
; DIMENSION : if absent or equal to zero, compute the variance over the
; whole data. otherwise, compute along the related dimension.
;
; OUTPUTS:
; Result is the mean of input data
;
; RESTRICTIONS:
; The input x needs to be an array of numbers (i.e not strings,
; struct, ptr, object)
;
; PROCEDURE:
; mean = 1/N sum(x)
;
; EXAMPLE:
; a=FINDGEN(100)
; result=MEAN(a)
; print, result
; 49.5000
;
; MODIFICATION HISTORY:
; 20-Mar-2004 : Written by Christopher Lee
; 18-Jul-2005 : Rewritten by Pierre Chanial
; 13-Jul-2012 : Alain Coulais : adding DIMENSION keyword, using MOMENT()
; 02-Aug-2012 : Gilles Duvert : avoid using MOMENT when DIMENSION is not present.
;
; LICENCE:
; Copyright (C) 2004, Christopher Lee, 2005 P. Chanial, 2012 Alain Coulais
;
; 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 of the License, or
; (at your option) any later version.
;
;-
;
ON_ERROR, 2
;
; old version by PC, to be used without Dimension keyword:
if ~KEYWORD_SET(dimension) then begin
; we don't call moment.pro, since it requires 2 or more elements
; and MEAN(x) should work even if dimension(x)==0
if keyword_set(NaN) then begin
n = total(finite(x), double=double)
endif else begin
n = n_elements(x)
endelse
mean = total(x, double=double, NaN=NaN)/n
return, mean
endif else begin
;
tmp=MOMENT(x, mean=mean, double=double, NaN=NaN, $
dimension=dimension, maxmoment=1)
;
return, mean
;
endelse
end
|