代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/135877/13890378
cpp ode_rungekuttacontentstep.cpp
//ODE_RungeKuttaContentStep.cpp
//全区间定步长积分龙格-库塔法
#include //输入输出流头文件
#include "OrdinaryDifferentialEguation.h" //求解常微分方程(组)头文件
using namespace std; //名字空间
void main(v
www.eeworm.com/read/135877/13890382
cpp ode_treanor.cpp
//ODE_Treanor.cpp 积分一步特雷纳法
#include //输入输出流头文件
#include "OrdinaryDifferentialEguation.h" ///求解常微分方程(组)头文件
using namespace std; //名字空间
void main(void)
{
double y[3] =
www.eeworm.com/read/135876/13890452
cpp integralgaussmd.cpp
//IntegralGaussMD.cpp 多重高斯法求积
#include //输入输出流头文件
#include "Integral.h" //积分头文件
using namespace std; //名字空间
void main(void)
{
long double js[3]={4,4,4};
valarray
www.eeworm.com/read/135876/13890454
cpp integralsimpson1d.cpp
//IntegralSimpson1D.cpp 变步长辛卜生法求积
#include //输入输出流头文件
#include "Integral.h" //积分头文件
using namespace std; //名字空间
void main(void)
{
double eps = FLOATERROR, a(0), b(1);
www.eeworm.com/read/135876/13890468
cpp integralmontecarlo1d.cpp
//IntegralMonteCarlo1D.cpp 蒙特卡洛法求积
#include //输入输出流头文件
#include "Integral.h" //积分头文件
using namespace std; //名字空间
void main(void)
{
double a(2.5), b(8.4);
double dVa
www.eeworm.com/read/238066/13909604
txt 例5.3.txt
例5.3 编写程序,用起泡法对10个数排序(按由小到大顺序)。
#include
using namespace std;
int main( )
{
int a[11];
int i,j,t;
cout
www.eeworm.com/read/135307/13940115
txt c语言库函数(q类字母).txt
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include
#include
#include
int sort_function( co
www.eeworm.com/read/135307/13940118
txt c语言库函数(s类字母) - 3.txt
函数名: sound
功 能: 以指定频率打开PC扬声器
用 法: void sound(unsigned frequency);
程序例:
/* Emits a 7-Hz tone for 10 seconds.
Your PC may not be able to emit a 7-Hz tone. */
#include
www.eeworm.com/read/135307/13940133
txt c语言库函数(v类字母).txt
函数名: vfprintf
功 能: 送格式化输出到一流中
用 法: int vfprintf(FILE *stream, char *format, va_list param);
程序例:
#include
#include
#include
FILE *fp;
in
www.eeworm.com/read/133757/14025372
c onedim.c
/* 使用选择法排序 */
# include
void main()
{
int i, j, min, temp;
/* 定义一个整型得一维数组 */
int array[10];
/* 输入数据 */
printf("Please input ten integer: \n");
for(i=0; i