代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/469630/6972353
m zero_in3.m
clear all;
clc;
m=2;
i1=1:21;
x1=zeros(1,length(i1)+m*(length(i1)-1));
x=[0 0 0 0.5 1 1.5 2 2.5 3 3.5 4 3.5 3 2.5 2 1.5 1 0.5 0 0 0];
n=0:length(i1)-1;
subplot(221),stem(n,x,'k');
X=fft(x,64);
www.eeworm.com/read/469630/6972360
m zero_inxl.m
% n1=0:4;
% x1=ones(1,length(n1));
% n2=5:14;
% x2=zeros(1,length(n2));
% n=[n1 n2];
% x=[x1 x2];
% figure(1),stem(n,x);
% X=fft(x,32);figure(2),stem(fftshift(abs(X)));
%
% n3=0;
% x3=1;
%
www.eeworm.com/read/468808/6988844
asv insert_zero.asv
function [data_insert_zero] = insert_zero (data_soft_de, rate, hard_soft,
fl)
% check the sizes
if hard_soft == 1
p1 = length(data_soft_de);
if rate == 1
data_insert_zero = data_soft_de;
elseif
www.eeworm.com/read/468808/6988858
m insert_zero.m
function [data_insert_zero] = insert_zero(data_soft_de, rate, hard_soft,fl)
% check the sizes
if hard_soft == 1
p1 = length(data_soft_de);
if rate == 1
data_insert_zero = data_soft_de;
elseif ra
www.eeworm.com/read/467077/7015363
m zero_pad.m
% this function takes a vector and zero_pad, or truncate, to length 2^13, or 8192
function Y = zero_pad(X)
if ( length(X) >= 2^13)
Y = X(1:2^13);
else
Y = X;
Y(length(X)+1:2^13) = zeros(1,2^13-l
www.eeworm.com/read/464644/7067048
bin zero-00.bin
www.eeworm.com/read/189342/7115070
c zero_pad.c
#include
void main ()
{
int value = 5;
printf ("%01d\n", value);
printf ("%02d\n", value);
printf ("%03d\n", value);
printf ("%04d\n", value);
}
www.eeworm.com/read/463107/7187477
c zero4.c
#include
#include
//此代码来源《数字信号处理C语言程序集》殷福亮、宋爱军,沈阳:辽宁科学技术出版社,1997.7
//数组x存储时域序列的实部,数组y存储时域序列的虚部
//n代表N点FFT,sign=1为FFT,sign=-1为IFFT
void FFT(double x[],double y[],int n,int sig
www.eeworm.com/read/453496/7418403
c zero_pad.c
#include
void main ()
{
int value = 5;
printf ("%01d\n", value);
printf ("%02d\n", value);
printf ("%03d\n", value);
printf ("%04d\n", value);
}