代码搜索:Separation
找到约 547 项符合「Separation」的源代码
代码结果 547
www.eeworm.com/read/477625/6729443
m chap1_7.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/476907/6754284
m ip_02_07.m
% MATLAB script for Illustrative Problem 2.7.
clear
echo on
N=256; % number of samples
deltaf=0.1; % frequency separation
f=[0:deltaf:(N/2)*deltaf, -(N/2-1)*deltaf:de
www.eeworm.com/read/476524/6755511
m chap1_13.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/407580/11414732
m chap1_13.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/401790/11549425
m chap1_7.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/158649/11595784
html separationframe.html
Display page for Separation at www.BruceEckel.comSeparation.java
www.eeworm.com/read/158463/11612966
m ip_02_07.m
% MATLAB script for Illustrative Problem 7, Chapter 2.
echo on
N=256; % number of samples
deltaf=0.1; % frequency separation
f=[0:deltaf:(N/2)*deltaf, -(N/2-1)*deltaf:deltaf:-deltaf];
www.eeworm.com/read/156528/11794902
m bsep.m
function [sdb] = bsep(x,y)
% bsep - Evaluates the quality of Blind Signal Separation
%
% usage: sdb = bsep(x,y);
%
% x(:,i,j) - The i^th microphone signal with only the j^th source active
% y(:,i,j) -
www.eeworm.com/read/156528/11794999
m inde.m
function y=Inde(x)
%copyright 2005.7.5
%A New Approach to Blind Source Separation with Global Optimal Property
%matlab code author: lucky zhang
%
%构造广义特征问题
[N,P]=size(x);
if P>10000
P=1000
www.eeworm.com/read/156528/11795339
m inde.m
function y=Inde(x)
%copyright 2005.7.5
%A New Approach to Blind Source Separation with Global Optimal Property
%matlab code author: xiaobing zhang
%
%构造广义特征问题
%预处理
[n,t] = size(x);
m=mean(x'