代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/449755/7497024
txt r.txt
返回>>C语言函数大全
函数名: raise
功 能: 向正在执行的程序发送一个信号
用 法: int raise(int sig);
程序例:
#include
int main(void)
{
int a, b;
a = 10;
b = 0;
if (b == 0)
/* preempt div
www.eeworm.com/read/449755/7497029
txt c.txt
函数名: cabs
功 能: 计算复数的绝对值
用 法: double cabs(struct complex z);
程序例:
#include
#include
int main(void)
{
struct complex z;
double val;
z.x = 2.0;
z.y = 1.
www.eeworm.com/read/448997/7520482
cpp algo0702.cpp
Status CreateUDN(MGraph &G) {// 算法 7.2
// 采用数组(邻接矩阵)表示法,构造无向网G。
int i,j,k,w;
VertexType v1,v2;
printf("G.vexnum :" ); scanf("%d",&G.vexnum);
printf("G.arcnum :"); scanf("%d",&G.a
www.eeworm.com/read/446864/7563818
cpp ssss.cpp
#include
#include
#include
typedef struct polynode
{
int coef; //多项式的系数
int exp; //指数
struct polynode *next;
}node;
node *create() //用尾插法建立一元多项式的链表
{
node *
www.eeworm.com/read/446308/7581549
txt wsnote.txt
Limen打字软件
设计:Limen
使用说明:
1、设定比赛时间及姓名后按开始键开始比赛
2、比赛过程不参暂停及时间字号设定
3、可用任何输入法输入汉字
4、由电脑自动记分计时
www.eeworm.com/read/445828/7589585
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned
www.eeworm.com/read/445828/7589588
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main
www.eeworm.com/read/444759/7607321
m 5-7.m
%例程5-7 功率谱估计的周期图法
% e.g.5-7.m for example5-7;
% to test function of periodogram;
%Estimate the PSD with periodogram method(By formula directly)
clear;
% Case 1: N=256
N=256;
n=0:N-1;
f1=
www.eeworm.com/read/443007/7639479
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned
www.eeworm.com/read/443007/7639482
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main