Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2edfb4f6 authored by hhakim's avatar hhakim
Browse files

Minor changes/fixes.

- Specify matplotlib as a need module in doc (quick start).
- Update license headers pyfaust and matfaust.
- Add forgotten license.m function.
parent f1736f23
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,11 @@
<p>FAµST is designed for the Python ecosystem which as usual relies on the numpy and scipy packages.</p>
<p>If you want to run de FAµST demos (module pyfaust.demo), you&rsquo;ll also need the matplotlib package.</p>
<p>Please ensure these packages are installed on your system. One way to install them is to use the pip program delivered with your python version.</p>
<pre><code>pip install numpy scipy
<pre><code>pip install numpy scipy matplotlib
# it could be pip3 instead of pip
</code></pre>
......
......@@ -14,9 +14,11 @@
FAµST is designed for the Python ecosystem which as usual relies on the numpy and scipy packages.
If you want to run de FAµST demos (module pyfaust.demo), you'll also need the matplotlib package.
Please ensure these packages are installed on your system. One way to install them is to use the pip program delivered with your python version.
pip install numpy scipy
pip install numpy scipy matplotlib
# it could be pip3 instead of pip
Note that you probably have to install those packages for all versions of Python you want to use (each one have normally its associated pip executable).<br/>
......
% ==========================================
%> Prints the FAµST license.
% ==========================================
function license()
disp('% License:')
disp(' Copyright (2018): Hakim Hadj-djilani, Nicolas Bellot, Adrien Leman, Thomas Gautrais, Luc Le Magoarou, Remi Gribonval')
disp(' INRIA Rennes, FRANCE')
disp(' http://www.inria.fr/')
disp('')
disp(' The FAuST Toolbox is distributed under the terms of the GNU Affero')
disp(' General Public License.')
disp(' This program is free software: you can redistribute it and/or modify')
disp(' it under the terms of the GNU Affero General Public License as published')
disp(' by the Free Software Foundation.')
disp('')
disp(' This program is distributed in the hope that it will be useful, but')
disp(' WITHOUT ANY WARRANTY; without even the implied warranty of')
disp(' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.')
disp(' See the GNU Affero General Public License for more details.')
disp('')
disp(' You should have received a copy of the GNU Affero General Public License')
disp(' along with F program. If not, see <http://www.gnu.org/licenses/>.')
disp('')
disp('% Contacts:')
disp(' Remi Gribonval : remi.gribonval@inria.fr')
disp(' Hakim Hadj-dji. : hakim.hadj-djilani@inria.fr')
disp(' Nicolas Bellot : nicolas.bellot@inria.fr')
disp(' Adrien Leman : adrien.leman@inria.fr')
disp(' Thomas Gautrais : thomas.gautrais@inria.fr')
disp(' Luc Le Magoarou : luc.le-magoarou@inria.fr')
disp('')
disp('% References:')
disp(' [1] Le Magoarou L. and Gribonval R., "Flexible multi-layer sparse')
disp(' approximations of matrices and applications", Journal of Selected')
disp(' Topics in Signal Processing, 2016.')
disp(' <https://hal.archives-ouvertes.fr/hal-01167948v1>')
disp('%')
end
%====================================
% Returns the FAµST package version.
% ====================================
%> Returns the FAµST package version.
%===
%
%====================================
%>
% ====================================
function ver = version()
ver = '@CPACK_PACKAGE_VERSION@';
end
# ##
# License: ##
# Copyright (2018): Nicolas Bellot, Adrien Leman, Thomas Gautrais, ##
# Copyright (2018): Hakim Hadj-Djilani, Nicolas Bellot, Adrien Leman, ##
# Thomas Gautrais, ##
# Luc Le Magoarou, Remi Gribonval ##
# INRIA Rennes, FRANCE ##
# http://www.inria.fr/ ##
......@@ -22,12 +23,12 @@
# If not, see <http://www.gnu.org/licenses/>. ##
# ##
# Contacts: ##
# Remi Gribonval : remi.gribonval@inria.fr ##
# Hakim Hadj-dji. : hakim.hadj-djilani@inria.fr ##
# 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 ##
# ##
#############################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment