学习CFD的基础教程,含有各种差分格式和高精度本质无振荡算法源程序。
上传时间: 2015-03-03
上传用户:海陆空653
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
Tiny Encrytion Algorithm压缩速度快,抗差分攻击力强
标签: Encrytion Algorithm Tiny 速度
上传时间: 2015-04-04
上传用户:阳光少年2016
这是一个ATMEGA16单片机进行AD转换的源程序代码,包刮单通道和差分转换两种情况,欢迎大家下载。
上传时间: 2015-04-14
上传用户:叶山豪
用JAVA语言编写,包括PSO(Particle swarm optimization, 中文译名为粒子群优化或微粒群算法), DE (Differential evolution, 中文译名为差分进化或差异演化)等算法,有一些不带约束和带约束的算例(如Michelawicz的几个问题)。使用说明见usage.txt、RUNExample.bat和程序中的注释。
上传时间: 2014-01-06
上传用户:agent
ex020100 信号合成 ex020200 信号合成 ex020300 复数序列的信号合成 ex020400 奇偶合成 ex020500 卷积计算 ex020600 卷积的图解 ex020700 卷积计算 ex02070b 卷积计算 ex020800 互相关计算 ex020700 卷积计算 ex020900 解差分方程 ex021000 解差分方程
上传时间: 2014-01-21
上传用户:sz_hjbf
生成三维模型异常体填充文件,可以用于有限差分法的电导率值填充,主要用于建立非均匀模型
标签: 三维模型
上传时间: 2014-01-06
上传用户:ecooo
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
此程序使用的集成环境为TI公司的CCS,硬件平台为合众达的vpmdm642 程序实现的功能为图像的背景差分,这主要是应用于运动检测中
上传时间: 2014-12-07
上传用户:fxf126@126.com
一个一维溃坝模拟动画,使用复合有限差分法,效果很好。刚学刚做,希望对大家有点用处。内含源程序。
上传时间: 2013-12-26
上传用户:我们的船长