代码搜索:4
找到约 10,000 项符合「4」的源代码
代码结果 10,000
www.eeworm.com/read/350382/10746195
m 4-4.m
%例程4-4 基于巴特沃斯模拟滤波器设计数字带通滤波器
Wp=[0.3*pi,0.4*pi];
Ws=[0.2*pi,0.5*pi];
Ap=3;
As=18;
[N,wn]=buttord(Wp/pi,Ws/pi,Ap,As); %计算巴特沃斯滤波器阶次和截止频率
[b,a]=butter(N,wn,'bandpass'); %频率变换法设计巴特沃斯带通滤波器
www.eeworm.com/read/275376/10821351
cpp 4_4.cpp
//4_4.cpp
#include
#include
using namespace std;
class Point //Point类声明
{
public:
Point(int xx=0, int yy=0) {X=xx;Y=yy;}
Point(Point &p);
int GetX() {return X;}
int Ge
www.eeworm.com/read/274718/10856281
cpp 4_4.cpp
#include
using namespace std;
struct StructClass //用struct关键字定义StructClass类
{ void set_value(int n) {value=n; } //公有属性
void show_value(char *name) { cout
www.eeworm.com/read/274564/10864531
c 4-4.c
/*4-4.c*/
#include
#include
#include
#include
#include
void getstr(int x,int y,char *str){
int key;
char ch;
char s[2];
int i=0;
s[1]='\0';
s
www.eeworm.com/read/419410/10870925
c 4-4.c
#include
void function()
{
static int a = 0;
int b = 0;
a++;
b++;
printf("a=%d,b=%d\n",a,b);
}
main()
{
function();
function();
function();
}
www.eeworm.com/read/418917/10891703
gif 4-4.gif
www.eeworm.com/read/273320/10920874
gif 4-4.gif
www.eeworm.com/read/418447/10945106
jpg 4-4.jpg
www.eeworm.com/read/416453/11024658
c 4-4.c
#define MAX_VERTEX_NUM 20
typedef enum{FALSE,TRUE} Boolean;
/*自定义的真值和假值,其中FALSE实际值为0,而TRUE实际值为1*/
Boolean visited[MAX_VERTEX_NUM];/*用来表示各顶点是否已被访问过*/
typedef struct ArcCell{
int adj;
char *i
www.eeworm.com/read/416237/11037092