資源簡介
基于JADE的盲源分離算法程序unction B = jadeR(X,m)
% B = jadeR(X, m) is an m*n matrix such that Y=B*X are separated sources
% extracted from the n*T data matrix X.
% If m is omitted, B=jadeR(X) is a square n*n matrix (as many sources as sensors)
%
% Blind separation of real signals with JADE. Version 1.8. May 2005.
%

代碼片段和文件信息
function?varargout?=?BSS(varargin)
%?BSS?M-file?for?BSS.fig
%??????BSS?by?itself?creates?a?new?BSS?or?raises?the?existing
%??????singleton*.
%
%??????H?=?BSS?returns?the?handle?to?a?new?BSS?or?the?handle?to
%??????the?existing?singleton*.
%
%??????BSS(‘CALLBACK‘hobjecteventDatahandles...)?calls?the?local
%??????function?named?CALLBACK?in?BSS.M?with?the?given?input?arguments.
%
%??????BSS(‘Property‘‘Value‘...)?creates?a?new?BSS?or?raises?the
%??????existing?singleton*.??Starting?from?the?left?property?value?pairs?are
%??????applied?to?the?GUI?before?BSS_OpeningFunction?gets?called.??An
%??????unrecognized?property?name?or?invalid?value?makes?property?application
%??????stop.??All?inputs?are?passed?to?BSS_OpeningFcn?via?varargin.
%
%??????*See?GUI?Options?on?GUIDE‘s?Tools?menu.??Choose?“GUI?allows?only?one
%??????instance?to?run?(singleton)“.
%
%?See?also:?GUIDE?GUIDATA?GUIHANDLES
%?Edit?the?above?text?to?modify?the?response?to?help?BSS
%?Last?Modified?by?GUIDE?v2.5?22-Mar-2010?18:06:14
%?Begin?initialization?code?-?DO?NOT?EDIT
gui_Singleton?=?1;
gui_State?=?struct(‘gui_Name‘???????mfilename?...
???????????????????‘gui_Singleton‘??gui_Singleton?...
???????????????????‘gui_OpeningFcn‘?@BSS_OpeningFcn?...
???????????????????‘gui_OutputFcn‘??@BSS_OutputFcn?...
???????????????????‘gui_LayoutFcn‘??[]??...
???????????????????‘gui_Callback‘???[]);
if?nargin?&?isstr(varargin{1})
????gui_State.gui_Callback?=?str2func(varargin{1});
end
if?nargout
????[varargout{1:nargout}]?=?gui_mainfcn(gui_State?varargin{:});
else
????gui_mainfcn(gui_State?varargin{:});
end
%?End?initialization?code?-?DO?NOT?EDIT
%?---?Executes?just?before?BSS?is?made?visible.
function?BSS_OpeningFcn(hobject?eventdata?handles?varargin)
%?This?function?has?no?output?args?see?OutputFcn.
%?hobject????handle?to?figure
%?eventdata??reserved?-?to?be?defined?in?a?future?version?of?MATLAB
%?handles????structure?with?handles?and?user?data?(see?GUIDATA)
%?varargin???command?line?arguments?to?BSS?(see?VARARGIN)
%?Choose?default?command?line?output?for?BSS
handles.output?=?hobject;
%?Update?handles?structure
guidata(hobject?handles);
%?UIWAIT?makes?BSS?wait?for?user?response?(see?UIRESUME)
%?uiwait(handles.figure1);
%?---?Outputs?from?this?function?are?returned?to?the?command?line.
function?varargout?=?BSS_OutputFcn(hobject?eventdata?handles)
%?varargout??cell?array?for?returning?output?args?(see?VARARGOUT);
%?hobject????handle?to?figure
%?eventdata??reserved?-?to?be?defined?in?a?future?version?of?MATLAB
%?handles????structure?with?handles?and?user?data?(see?GUIDATA)
%?Get?default?command?line?output?from?handles?structure
varargout{1}?=?handles.output;
%?---?Executes?on?button?press?in?pushbutton1.
function?pushbutton1_Callback(hobject?eventdata?handles)
%?hobject????handle?to?pushbutton1?(see?GCBO)
%?eventdata??reserved?-?to?be?defined?in?a?future?version?of?MATLAB
%?handles??
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????175150??2010-03-22?18:17??jade\1.wav
?????文件?????175150??2010-03-22?18:17??jade\2.wav
?????文件???????1760??2010-03-27?16:47??jade\BSS.fig
?????文件???????4800??2010-03-26?11:03??jade\BSS.m
?????文件??????17956??2010-03-22?18:10??jade\jadeR.m
?????目錄??????????0??2010-04-30?16:17??jade
-----------?---------??----------?-----??----
???????????????374816????????????????????6
評論
共有 條評論