代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
www.eeworm.com/read/319939/13439170

txt c语言库函数(o类字母).txt

函数名: open 功 能: 打开一个文件用于读或写 用 法: int open(char *pathname, int access[, int permiss]); 程序例: #include #include #include #include int main
www.eeworm.com/read/310200/13655628

cpp kuaisufa2.cpp

//快速排序法(类方法)kuaisufa2.cpp #include #include #include #include #define N 10 class kuaisu {public: kuaisu(float a[],int m):n(m) {for(int i=0;i
www.eeworm.com/read/310200/13655634

cpp xuanze3.cpp

//选择排序法(类方法)xuanze3.cpp #include #include #include #include #define N 10 class xuanze {public: xuanze(int a[],int m):n(m) {for(int i=0;i
www.eeworm.com/read/310200/13655687

cpp jishufa2.cpp

//基数排序法(函数模板)jishufa2.cpp #include #include #include #include const int N=10; const int rd=10; const int D=2; void output(int a[],int n) {cout
www.eeworm.com/read/310130/13657939

c rsa.c

#include #include #include #include #define VLONG unsigned long #define TRUE 1 #define FALSE 0 //模幂算法,素数的米勒-勒宾(MIller-Rabin)概率测试法,p151 //输
www.eeworm.com/read/309993/13660938

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/309072/13682625

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/304934/13782594

m gauss.m

%高斯列主消元法接方程组 a=input('请输入方程组系数矩阵a:') %输入方程组的系数矩阵(a)为方阵 disp(a) [m,n]=size(a) %输入系数矩阵的行(m)和列(n)的大小 if m~=n
www.eeworm.com/read/133966/5896748

java conicequationpredict.java

package com.eastcom.canicula.SHM.futurePredictor.predictAlgorithms; import java.text.DecimalFormat; /** * @author jakcy_wu(wujichun) * * 预测分析--本算法只适用于有明显线性趋势的数据 * 默认为一元二次曲线方程法 * * 本
www.eeworm.com/read/186708/6317812

m ia.m

function [bestever,endAnti,bPop,traceInfo,memory,Found]=ia(memory,popsize,bounds,evalFN,evalOps,... maxgen,precision,pcross,pmutation,maxmemnum,selectOps) %一般免疫算法,主要参考文献为 %王煦法 张显俊 曹先彬 张军 冯雷,一种基