代码搜索:Check
找到约 10,000 项符合「Check」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5528871
c vect-24.c
/* { dg-require-effective-target vect_int } */
#include
#include "tree-vect.h"
#define N 64
int
main1 ()
{
int i;
int ia[N];
int ib[N]=
{1,1,0,0,1,0,1,0,
1,1,0,0,1,0,1,0,
www.eeworm.com/read/162614/5528884
c vect-17.c
/* { dg-require-effective-target vect_int } */
#include
#include "tree-vect.h"
#define N 64
int
main1 ()
{
int i;
int ia[N];
int ib[N]=
{1,1,0,0,1,0,1,0,
1,1,0,0,1,0,1,
www.eeworm.com/read/162614/5528898
c vect-23.c
/* { dg-require-effective-target vect_int } */
#include
#include "tree-vect.h"
#define N 64
int
main1 ()
{
int i;
int ia[N];
int ib[N]=
{1,1,0,0,1,0,1,0,
1,1,0,0,1,0,1,0,
www.eeworm.com/read/158872/5590137
igen sb1.igen
// -*- C -*-
// Simulator definition for the Broadcom SiByte SB-1 CPU extensions.
// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Ed Satterthwaite and Chris Demetriou, of Broad
www.eeworm.com/read/294176/8249246
h base.h
//base.h
#include
void checkfile(FILE *fp,CString str_file_name);
//再写一个check指针的函数,要用到模板。
//暂时不用模板了,以后再改
void check_pointer(int *pointer,bool type = TRUE);
www.eeworm.com/read/173659/9644653
m hc328.m
%《数字信号处理教程——MATLAB释义与实现》第三章例3.2.8程序hc328
% 验证DTFT的共轭性质
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
n = -5:10; x = rand(1,length(n)) + j*randn(1,length(n));
k = -100:100; w = (pi/100)*k; % -pi 和 +pi 之间的频率
www.eeworm.com/read/171074/9772649
m ex031100.m
% 第三章: 例 3.11:
%
n = -5:10; x = rand(1,length(n));
k = -100:100; w = (pi/100)*k; % -pi和+pi之间的频率
X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x
% 折叠特性
y = fliplr(x); m = -fliplr(n);
www.eeworm.com/read/171074/9772650
m ex030800.m
% 第三章: 例 3.8:
%
x = rand(1,11); n = 0:10;
k = 0:500; w = (pi/500)*k;
X = x * (exp(-j*pi/500)).^(n'*k); % x 的 DTFT
% 信号移位两个样本点
y = x; m = n+2;
Y = y * (exp(-j*pi/500)).^(m'*k); % y 的 DTFT
www.eeworm.com/read/171074/9772656
m ex031000.m
% 第三章: 例 3.10:
%
n = -5:10; x = rand(1,length(n)) + j*rand(1,length(n));
k = -100:100; w = (pi/100)*k; % -pi 和 +pi 之间的频率
X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x
% 共轭特性
y = conj(x
www.eeworm.com/read/268260/11146921
m ex030800.m
x = rand(1,11); n = 0:10;
k = 0:500; w = (pi/500)*k;
X = x * (exp(-j*pi/500)).^(n'*k); % DTFT of x
% signal shifted by two samples
y = x; m = n+2;
Y = y * (exp(-j*pi/500)).^(m'*k); % DTFT o