搜索结果
找到约 8 项符合
stem 的查询结果
matlab例程 Example - 3-D Stem Plot of an FFTFor example, fast Fourier transforms are calculated at points aroun
Example - 3-D Stem Plot of an FFTFor example, fast Fourier transforms are calculated at points around the unit circle on the complex plane. So, it is interesting to visualize the plot around the unit circle. Calculating the unit circle.
其他 扫描电镜(stem)的matlab模拟程序代码
扫描电镜(stem)的matlab模拟程序代码,英文说明,可直接运行
matlab例程 y3k=fft(u,(m+n-2)/4) i=1:(m+n-2)/4 subplot(5,2,9) stem(i,u) title( 滤波后上采样 ) k=1:(m+n-2
y3k=fft(u,(m+n-2)/4)
i=1:(m+n-2)/4
subplot(5,2,9) stem(i,u)
title( 滤波后上采样 )
k=1:(m+n-2)/4
subplot(5,2,10) stem(k,y3k)
title( 上采样频谱 )
xlabel( k ) ylabel( y3k )
行业发展研究 Stem Proter algorithm to convert words to their stem form
Stem Proter algorithm to convert words to their stem form
其他书籍 Stem Cell Basics - Book
Stem Cell Basics - Book
单片机编程 基于多点网络的水厂自动监控系统设计
基于多点网络的水厂自动监控系统设计Design of MPI Based Automatic Monitoring and Control System in Water Works刘 美 俊(湖南工程学院,湘潭411101)摘要针对水厂工作水泵多、现场离控制站距离远的特点,提出了一种基于MPI多点网络的自动监控系统的设计方法,分析了系统的工作原理,介绍了系统中数据的采集与处理、主站 ...
单片机编程 基于变频调速的水平连铸机拉坯辊速度控制系统
基于变频调速的水平连铸机拉坯辊速度控制系统Frequency Inverter Based Drawing RollerS peedC ontrolSy stem ofHorizontal Continuous Casting MachineA 伟刘冲旅巴(南 华 大 学电气工程学院,衡阳421001)摘要拉坯辊速度控制是水平连铸工艺的关键技术之一,采用变频器实现水平连铸机拉坯辊速度程序控制,由信号发生装置给 ...
其他 ketang
x=[1,2,0,-1,3,2];h=[1,-1,1];
y1=x*h(1);
y2=x*h(2);
y3=x*h(3);
Y1=[0,0,y1];
Y2=[0,y2,0];
Y3=[y3,0,0];
y=Y1+Y2+Y3;
L=-2:1:5;
figure(1);
subplot(211);stem(L,y,'*');
xlabel('L');ylabel('y');title('(1)');
X=x.';X=X';
r1=X*y(1);r2=X*y(2);r3=X*y(3);r4=X*y(4);
r5=X*y(5);r6=X*y(6);r7=X*y(7);r8=X*y(8);
R1=[0, ...