代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/189297/8479748
~5~ unitglobal.pas.~5~
unit UnitGlobal;
interface
var
CurrentYear:String;//一位数的字符,比如2005年,就取5做为当前要操作的年份
procedure setCurrentYear(year:String);
implementation
procedure setCurrentYear(year:String);
begin
www.eeworm.com/read/389710/8506961
m dft_coherence.m
function DFT_Coherence()
% WSS iteration ----1-D , 相干 统计特性
clear all;
%全局变量定义
%--------------------------------------------
degrad=pi/180;
ii=sqrt(-1);
M=10; %阵元数
K=3;
d=0.5;
th=[-30 1
www.eeworm.com/read/389478/8517649
cpp p3-140.cpp
#include
#include
#define MAX 30
//main()的定义
int main(void)
{
char str[MAX],*p;
//从键盘上输入int数
cout
www.eeworm.com/read/289762/8528658
c ln16.c
#include "stdio.h"
#define n 6 /*图的顶点数*/
#define e 6 /*图的边数*/
typedef char vextype; /*顶点数据类型*/
typedef int adjtype; /*权值类型*/
typedef struct
{ vextype v
www.eeworm.com/read/289762/8528660
c ln13.c
#include "stdio.h"
#define n 6 /*图的顶点数*/
#define e 6 /*图的边数*/
typedef char vextype; /*顶点数据类型*/
typedef int adjtype; /*权值类型*/
typedef struct
{ vextype vex
www.eeworm.com/read/433259/8535335
java jisuanqi.java
import java.awt.*;
import java.awt.event.*;
public class JiSuanQi extends Frame{
public double result = 0;
public int n = 0;//用于保证输入数中小数点的个数
public String fuhao = null;//
www.eeworm.com/read/432942/8561126
asv contactinfo.asv
// 头文件
#include "mex.h"
#include "string.h"
#define MAXCHARS 80 /* 指定每个域可以包含的最大字符数 */
/* 接口函数 */
void mexFunction(int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs
www.eeworm.com/read/432942/8561152
c contactinfo.c
// 头文件
#include "mex.h"
#include "string.h"
#define MAXCHARS 80 /* 指定每个域可以包含的最大字符数 */
/* 接口函数 */
void mexFunction(int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs
www.eeworm.com/read/387198/8700005
cpp 进程调度.cpp
#include
#include
#include
const int MAXNUM=10; //定义最大进程数
//定义进程结构体
typedef struct node
{
char name[10]; //名称
int status; //状态
int time;
www.eeworm.com/read/386476/8744616
asm flash.asm
;===============================================================
; 文件名称: Flash.ASM
; 功能描述: 读/写Flash, 了解Flash的保护, 擦除特性.
; 带保护写入0~127共128个数, 不带保护写入128个55H.
;===============================