Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e825050d authored by Nicolas Bellot's avatar Nicolas Bellot Committed by hhakim
Browse files

header matlab dvp.m

parent 286bd24b
No related branches found
No related tags found
No related merge requests found
...@@ -4,17 +4,41 @@ function Ddvp = dvp(D) ...@@ -4,17 +4,41 @@ function Ddvp = dvp(D)
% which is the product of the matrices contained in D: % which is the product of the matrices contained in D:
% Ddvp = D{1}*D{2}*...*D{n}. % Ddvp = D{1}*D{2}*...*D{n}.
% %
% References: % For more information on the FAuST Project, please visit the website of
% [1] Le Magoarou L. and Gribonval R., "Learning computationally efficient % the project : <http://faust.gforge.inria.fr>
% dictionaries and their implementation as fast transforms", submitted to %
% NIPS 2014 %% License:
% Copyright (2016): Nicolas Bellot, Adrien Leman, Thomas Gautrais,
% Luc Le Magoarou % Luc Le Magoarou, Remi Gribonval
% PANAMA team % INRIA Rennes, FRANCE
% Inria, Rennes - Bretagne Atlantique % http://www.inria.fr/
% luc.le-magoarou@inria.fr %
% The FAuST Toolbox is distributed under the terms of the GNU Affero
% General Public License.
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU Affero General Public License as published
% by the Free Software Foundation.
%
% This program 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 Affero General Public License for more details.
% %
% June 2014 % You should have received a copy of the GNU Affero General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
%
%% Contacts:
% Nicolas Bellot : nicolas.bellot@inria.fr
% Adrien Leman : adrien.leman@inria.fr
% Thomas Gautrais : thomas.gautrais@inria.fr
% Luc Le Magoarou : luc.le-magoarou@inria.fr
% Remi Gribonval : remi.gribonval@inria.fr
%
%% References:
% [1] Le Magoarou L. and Gribonval R., "Flexible multi-layer sparse
% approximations of matrices and applications", Journal of Selected
% Topics in Signal Processing, 2016.
% <https://hal.archives-ouvertes.fr/hal-01167948v1>
Nlayers = size(D,2); Nlayers = size(D,2);
if Nlayers==0 if Nlayers==0
...@@ -29,4 +53,4 @@ else ...@@ -29,4 +53,4 @@ else
end end
Ddvp = full(Ddvp); Ddvp = full(Ddvp);
end end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment