Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
faust group
faust
Commits
983c0825
Commit
983c0825
authored
8 years ago
by
Nicolas Bellot
Committed by
hhakim
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
wrapper/matlab/tools/ header
parent
bab49b4e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
wrapper/matlab/tools/Faust.m
+35
-1
35 additions, 1 deletion
wrapper/matlab/tools/Faust.m
wrapper/matlab/tools/FaustCore.m
+35
-2
35 additions, 2 deletions
wrapper/matlab/tools/FaustCore.m
with
70 additions
and
3 deletions
wrapper/matlab/tools/Faust.m
+
35
−
1
View file @
983c0825
...
@@ -3,8 +3,42 @@
...
@@ -3,8 +3,42 @@
%
in
order
to
speed
-
up
multiplication
by
this
matrix
,
%
in
order
to
speed
-
up
multiplication
by
this
matrix
,
%
matlab
wrapper
class
implemented
in
C
++
%
matlab
wrapper
class
implemented
in
C
++
%
%
%
For
more
information
on
the
FAuST
Project
,
please
visit
the
website
of
%
For
more
information
on
the
FAuST
Project
,
please
visit
the
website
of
%
the
project
:
<
http
://
faust
.
gforge
.
inria
.
fr
>
%
the
project
:
<
http
://
faust
.
gforge
.
inria
.
fr
>
%
%%
License
:
%
Copyright
(
2016
)
:
Nicolas
Bellot
,
Adrien
Leman
,
Thomas
Gautrais
,
Luc
Le
Magoarou
,
Remi
Gribonval
%
INRIA
Rennes
,
FRANCE
%
http
://
www
.
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
.
%
%
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
-
01167948
v1
>
%%
classdef
Faust
classdef
Faust
properties
(
SetAccess
=
private
,
Hidden
=
true
)
properties
(
SetAccess
=
private
,
Hidden
=
true
)
...
...
This diff is collapsed.
Click to expand it.
wrapper/matlab/tools/FaustCore.m
+
35
−
2
View file @
983c0825
%class FAUSTCORE
%class FAUSTCORE
% this class only stored the Faust C++ object and
% this class only stored the Faust C++ object and
% inherit from matlab handle class which allows different
% inherit from matlab handle class which allows different
% object to the same reference
% object to
have
the same reference
%
%
% WARNING : the user must not directly use this class,
% WARNING : the user must not directly use this class,
% he must use the matlab class Faust
% he must use the matlab class Faust
%
%
% For more information on the FAuST Project, please visit the website of
% For more information on the FAuST Project, please visit the website of
% the project : <http://faust.gforge.inria.fr>
% the project : <http://faust.gforge.inria.fr>
%
%% License:
% Copyright (2016): Nicolas Bellot, Adrien Leman, Thomas Gautrais, Luc Le Magoarou, Remi Gribonval
% INRIA Rennes, FRANCE
% http://www.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.
%
% 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>
%%
classdef
FaustCore
<
handle
classdef
FaustCore
<
handle
properties
(
SetAccess
=
public
,
Hidden
=
false
)
properties
(
SetAccess
=
public
,
Hidden
=
false
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment