代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/403522/11515138
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main
www.eeworm.com/read/403261/11520190
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/403261/11520221
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/403063/11522835
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/401636/11552692
m hjjsort.m
function B=hjjsort(A)
% 将A=[3 1 4 7 6 9]置换成【7 9 6 3 4 1】
N=length(A);t=[0 0];
for i=1:N
temp(i,2)=A(i);
temp(i,1)=i;
end
for i=1:N-1 % 沉底法将 A 排序
www.eeworm.com/read/262387/11590077
m hjjsort.m
function B=hjjsort(A)
% 将A=[3 1 4 7 6 9]置换成【7 9 6 3 4 1】
N=length(A);t=[0 0];
for i=1:N
temp(i,2)=A(i);
temp(i,1)=i;
end
for i=1:N-1 % 沉底法将 A 排序
f
www.eeworm.com/read/158317/11626314
txt c语言库函数(u类字母).txt
函数名: ultoa
功 能: 转换一个无符号长整型数为字符串
用 法: char *ultoa(unsigned long value, char *string, int radix);
程序例:
#include
#include
int main( void )
{
unsigned
www.eeworm.com/read/158317/11626325
txt c语言库函数(o类字母).txt
函数名: open
功 能: 打开一个文件用于读或写
用 法: int open(char *pathname, int access[, int permiss]);
程序例:
#include
#include
#include
#include
int main
www.eeworm.com/read/345167/11834384
cpp rootmontecarloreal.cpp
//RootMonteCarloReal.cpp
//MonteCarlo法求解非线性方程一个实根
#include //输入输出流头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using namespace std; //名字空间
void main(void)
{
long d