From: yomguy Date: Wed, 7 May 2008 16:43:02 +0000 (+0000) Subject: Move SAVE and PLAY buttons X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=756474a52d092ba638c35fc79bf045f36823ea91;p=cnaq.git Move SAVE and PLAY buttons git-svn-id: http://svn.parisson.org/svn/CNAQ/trunk@190 5fc3e0e6-29bc-4d03-b52b-c088cb822bde --- diff --git a/CNAQ.fig b/CNAQ.fig index 45880fb..e040ff8 100644 Binary files a/CNAQ.fig and b/CNAQ.fig differ diff --git a/doc/latex/Manuel_CNAQ.tex b/doc/latex/Manuel_CNAQ.tex index d14657c..d51b88c 100644 --- a/doc/latex/Manuel_CNAQ.tex +++ b/doc/latex/Manuel_CNAQ.tex @@ -34,7 +34,6 @@ }} - \begin{document} \maketitle @@ -184,7 +183,7 @@ et remplacer les valeurs \verb|device| et \verb|latency| par celles d L'interface graphique de CNAQ comporte 6 blocs principaux dont voici les descriptions : \begin{description} - \item[Metadata :] les données générales de la prochaine mesure : le nom de groupe (à remplir), les commentaires (optionnels), le dossier de travail à choisir (bouton \textbf{Browse}).\\ + \item[Metadata :] les données générales de la prochaine mesure. Ce bloc contient le nom de groupe (à remplir), les commentaires (optionnels), le dossier de travail à choisir (bouton \textbf{Browse}).\\ \item[Infos :] les informations de copyright et de version de l'application utilisée.\\ diff --git a/tests/farina.m b/tests/farina.m index 2f7c9a2..95f5a01 100644 --- a/tests/farina.m +++ b/tests/farina.m @@ -16,7 +16,7 @@ clear all close all %input parameters f1=1; % start frequency (Hz) -f2=20000; %end frequency(Hz) +f2=5000; %end frequency(Hz) tmax=.5; % excitation signal duration (s) nwin=100; % windowing point number (half at the begining - half at the end) diff --git a/tools/measurement.m b/tools/measurement.m index 4c59322..b49cbfd 100644 --- a/tools/measurement.m +++ b/tools/measurement.m @@ -38,7 +38,7 @@ function measurement(handles) window_in = window(1:len_win_in); len_win_out = fade_out_time * f_s; - window = blackman (len_win_out); + window = blackman(len_win_out); len_win_out = round(len_win_out/2); window_out = flipud(window(1:len_win_out));