代码搜索:COMPACT

找到约 3,584 项符合「COMPACT」的源代码

代码结果 3,584
www.eeworm.com/read/144351/12801176

m q507.m

%《MATLAB在电子信息课程中的应用》第五章例5.7程序q507 % 直流电路的暂态计算:二阶欠阻尼电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact L=0.5; C=0.02; R=12.5; % 输入元件参数 uc0=1; iL0=0; for R=1:10 a=R/2/L;; w0=sqrt
www.eeworm.com/read/144351/12801225

m q515.m

%《MATLAB在电子信息课程中的应用》第五章例5.15程序q515 % 频率响应:二阶电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact for Q=[1/3,1/2,1/sqrt(2),1,2,5] w=logspace(-1,1,50); % 设定频率数组w H=1./(1+j*w/Q+(
www.eeworm.com/read/483854/6596284

m q506.m

%《MATLAB在电子信息课程中的应用》第五章例5.6程序q506 % 直流电路的暂态计算:二阶过阻尼电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact L=0.5; R=12.5; C=0.02; % 输入元件参数 uc0=1; iL0=0; alpha=R/2/L; wn=sqrt(1/(L*C)); %
www.eeworm.com/read/483854/6596358

m q507.m

%《MATLAB在电子信息课程中的应用》第五章例5.7程序q507 % 直流电路的暂态计算:二阶欠阻尼电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact L=0.5; C=0.02; R=12.5; % 输入元件参数 uc0=1; iL0=0; for R=1:10 a=R/2/L;; w0=sqrt
www.eeworm.com/read/483854/6596380

m q515.m

%《MATLAB在电子信息课程中的应用》第五章例5.15程序q515 % 频率响应:二阶电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact for Q=[1/3,1/2,1/sqrt(2),1,2,5] w=logspace(-1,1,50); % 设定频率数组w H=1./(1+j*w/Q+(
www.eeworm.com/read/220804/14788184

asv 频率响应二阶电路.asv

%《MATLAB在电子信息课程中的应用》第五章例5.15程序q515 % 频率响应:二阶电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact for Q=[1/3,1/2,1/sqrt(2),1,2,5] w=logspace(-1,1,50); % 设定频率数组w H=1./(1+j*w/Q+(
www.eeworm.com/read/220804/14788208

m 直流二阶欠阻尼电路.m

%《MATLAB在电子信息课程中的应用》第五章例5.7程序q507 % 直流电路的暂态计算:二阶欠阻尼电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact L=0.5; C=0.02; R=12.5; % 输入元件参数 uc0=1; iL0=0; for R=1:10 a=R/2/L;; w0=sqrt
www.eeworm.com/read/220804/14788266

m 直流二阶过阻尼电路.m

%《MATLAB在电子信息课程中的应用》第五章例5.6程序q506 % 直流电路的暂态计算:二阶过阻尼电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact L=0.5; R=12.5; C=0.02; % 输入元件参数 uc0=1; iL0=0; alpha=R/2/L; wn=sqrt(1/(L*C)); %
www.eeworm.com/read/220804/14788422

m 频率响应二阶电路.m

%《MATLAB在电子信息课程中的应用》第五章例5.15程序q515 % 频率响应:二阶电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月 clear, format compact for Q=[1/3,1/2,1/sqrt(2),1,2,5] w=logspace(-1,1,50); % 设定频率数组w H=1./(1+j*w/Q+(
www.eeworm.com/read/295431/8164222

m q514.m

%《MATLAB及在电子信息课程中的应用》第五章例5.14程序q514 % 频率响应:简单电路 % 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月初版,2003年7月第二版 % clear, format compact wo=0:0.2:4; % 设定频率数组wo=w/wc H=1./(1+j*wo); % 求复频率响应