~ubuntu-branches/ubuntu/wily/octave-ltfat/wily-proposed

« back to all changes in this revision

Viewing changes to inst/comp/arg_normalize.m

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Rafael Laboissiere
  • Date: 2015-07-18 23:36:41 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20150718233641-jhuf3f551a3523qc
Tags: 2.1.0+dfsg-1
* Team upload.

[ Rafael Laboissiere ]
* Imported Upstream version 2.1.0+dfsg
* d/rules: Prevent unit testing on armhf and mips.
  This avoids FTBFS on theses architectures (see Bug#765545).
* Unit testing does not need X-window anymore
  + d/rules: Do not use xfvb-run to run the tests.
  + d/control: Drop xauth, xvfb, and gnuplot-nox from Build-Depends.
    Also, the versioned dependency on octave-pkg-dev is relaxed.
* Drop .jar file from upstream tarball, complying with the Debian Policy
  + d/copyright: Exclude file blockproc.jar
  + d/rules: Add get-orig-source target
  + d/watch: Mangle upstream version to cope with "+dfsg" tag
* Build blockproc.jar, which is deleted from the upstream tarball
  + d/rules: Add commands for building blockproc.jar
  + d/control: Build-depend on default-jdk
  + d/p/fix-path-of-included-makefile.patch: New patch
* Bump Standard-Versions to 3.9.6 (no changes needed)
* d/p/autoload-yes.patch: Remove patch (deprecated upstream)
* Bump Build-Depends on octave to >> 4.0.0~rc4-1 (for sndfile support)
* d/check.m: Avoid verbose output of unit tests
* d/watch: Add the repacksuffix option
* d/p/add-hardening-flags.patch: Drop patch (applied upstream)
* d/p/fix-path-of-included-makefile.patch: Drop patch (applied upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
function definput=arg_normalize(definput)
2
2
  
3
 
  definput.flags.norm={'2','1','inf','area','energy','peak',...
4
 
                       's0','rms','null','wav'};
5
 
 
6
 
 
7
 
 
8
3
%-*- texinfo -*-
9
4
%@deftypefn {Function} arg_normalize
10
5
%@verbatim
 
6
% Both 'null' and 'empty' do no scaling when normalize is called
 
7
% directly.
 
8
% When used in different functions,
 
9
% 'empty' can be set as default by definput.importdefaults={'empty'};
 
10
% to detect whether any of the other flags were set.
 
11
11
12
%@end verbatim
12
 
%@strong{Url}: @url{http://ltfat.sourceforge.net/doc/comp/arg_normalize.php}
 
13
%@strong{Url}: @url{http://ltfat.github.io/doc/comp/arg_normalize.html}
13
14
%@end deftypefn
14
15
 
15
 
% Copyright (C) 2005-2014 Peter L. Soendergaard <soender@users.sourceforge.net>.
16
 
% This file is part of LTFAT version 2.0.1
 
16
% Copyright (C) 2005-2015 Peter L. Soendergaard <peter@sonderport.dk>.
 
17
% This file is part of LTFAT version 2.1.0
17
18
%
18
19
% This program is free software: you can redistribute it and/or modify
19
20
% it under the terms of the GNU General Public License as published by
27
28
%
28
29
% You should have received a copy of the GNU General Public License
29
30
% along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
31
definput.flags.norm={'2','1','inf','area','energy','peak',...
 
32
                     's0','rms','null','wav','norm_notset'};
 
33
 
 
34
 
30
35