代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/291783/8395142
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned
www.eeworm.com/read/291783/8395154
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main
www.eeworm.com/read/191861/8419049
txt jishufa1.txt
//基数排序法(类方法)jishufa1.cpp
#include
#include
const int N=10;
class jishu
{public:
jishu(int d[],int s):n(s)
{for(int i=0;i
www.eeworm.com/read/191861/8419102
cpp jishufa1.cpp
//基数排序法(类方法)jishufa1.cpp
#include
#include
const int N=10;
class jishu
{public:
jishu(int d[],int s):n(s)
{for(int i=0;i
www.eeworm.com/read/288948/8590596
h calculate.h
#include "math.h"
//用混合同余法产生(a,b)区间上的随机数yi.
double uniform(double a,double b,long *seed)
{
double t;
*seed=2045*(*seed)+1;
*seed=*seed-(*seed/1048576)*1048576;
t=(*seed)/1048576.0;
t=a+(b
www.eeworm.com/read/388508/8605408
h graphrect.h
//图的邻接矩阵表示法(数组存储)//图的十字链表存储
//
#include"stdio.h"
#include "stdlib.h"
//#include"iomanip.h"//setw(10)
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIB
www.eeworm.com/read/187489/8635707
m judge_errsate.m
function [errsate,sate,flag]=judge_errsate(kk_gps,kk_galileo,kk_beidou,H,y,num)
%*********************************
% ** %最大似然估计法故障星
% ** kk_gps,kk_galileo,kk_beidou分别为三个系统可见星数
% ***************
www.eeworm.com/read/187489/8635865
asv judge_errsate.asv
function [errsate,sate,flag]=judge_errsate(kk_gps,kk_galileo,kk_beidou,H,y,num)
%*********************************
% ** %最大似然估计法故障星
% ** kk_gps,kk_galileo,kk_beidou分别为三个系统可见星
% ****************
www.eeworm.com/read/285689/8822615
c leveltotree.c
#include
# define m 3 /* 树的度数*/
# define MAXSIZE 20 /* 数组元素个数的最大值*/
typedef char datatype; /* 树中结点值的类型*/
typedef struct node { /*树的扩充孩子表示法中结点的类型*/
dataty
www.eeworm.com/read/384265/8884686
cpp le_sparseeuationtotalchoicegaussjordan.cpp
//LE_SparseEuationTotalChoiceGaussJordan.cpp
//求解大型稀疏方程组的全选主元高斯-约当消去法
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程(组)求解头文件
void main()
{
int i;
double a[8