⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 source2.m

📁 盲分离算法
💻 M
字号:
% SOURCE SIGNAL 2%-------------------------------------------------------------------------------%	s  =	source signal 2%-------------------------------------------------------------------------------
% Grenoble, December 2000
% This work has been partly funded by the European project BLIS (IST-1999-14190)
s2=sin((1:T)*(2*pi)/T);% vector : sine of the elements (1:T)*(2*pi)/T	%s2=cos((1:T)*(2*pi)/T);% vector : cosine of the elements (1:T)*(2*pi)/T%s2=sawtooth(1:T);	% vector : sawtooth wave (length T)%s2=sinc(1:T);		% vector : sinc of the elements 1:T%s2=square(1:T);	% vector : square wave (length T)% normalisations2=s2-mean(s2);s2=s2/std(s2);% plotssubplot(ay(5));plot(s2,'b','MarkerSize',2);title('source signal s2','FontSize',15);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -