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

« back to all changes in this revision

Viewing changes to inst/nonstatgab/nsdgtreal.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:
15
15
%         c     : Cell array of coefficients.
16
16
%         Ls    : Length of input signal.
17
17
%
18
 
%   NSDGTREAL(f,g,a,M) computes the nonstationary Gabor coefficients of the
 
18
%   NSDGTREAL(f,g,a,M) computes the non-stationary Gabor coefficients of the
19
19
%   input signal f. The signal f can be a multichannel signal, given in
20
20
%   the form of a 2D matrix of size Ls xW, with Ls the signal
21
21
%   length and W the number of signal channels.
24
24
%   of the output are returned. NSDGTREAL will refuse to work for complex
25
25
%   valued input signals.
26
26
%
27
 
%   The nonstationnary Gabor theory extends standard Gabor theory by
 
27
%   The non-stationary Gabor theory extends standard Gabor theory by
28
28
%   enabling the evolution of the window over time. It is therefor necessary
29
29
%   to specify a set of windows instead of a single window.  This is done by
30
30
%   using a cell array for g. In this cell array, the n'th element g{n}
83
83
%     J. Comput. Appl. Math., 236(6):1481-1496, 2011.
84
84
%     
85
85
%@end verbatim
86
 
%@strong{Url}: @url{http://ltfat.sourceforge.net/doc/nonstatgab/nsdgtreal.php}
 
86
%@strong{Url}: @url{http://ltfat.github.io/doc/nonstatgab/nsdgtreal.html}
87
87
%@seealso{nsdgt, insdgtreal, nsgabdual, nsgabtight, phaselock, demo_nsdgt}
88
88
%@end deftypefn
89
89
 
90
 
% Copyright (C) 2005-2014 Peter L. Soendergaard <soender@users.sourceforge.net>.
91
 
% This file is part of LTFAT version 2.0.1
 
90
% Copyright (C) 2005-2015 Peter L. Soendergaard <peter@sonderport.dk>.
 
91
% This file is part of LTFAT version 2.1.0
92
92
%
93
93
% This program is free software: you can redistribute it and/or modify
94
94
% it under the terms of the GNU General Public License as published by
185
185
  c{ii}=fftreal(temp); % FFT of the windowed signal
186
186
end
187
187
end;
 
188