搜索资源列表
hyplas
- ************************************************************************ * * * * * THIS IS THE H Y P L A S 2.0 README FILE * * ----------------- * * * * HYPLAS is a finite element program for implicit small and large * * strain analisys of hyperelast
geometry-1.5.source.tar
- 一个强大的开源的计算几何算法库,全称是: 提供了诸如:2D凸包,3D凸包,三角化等等著名的计算几何经典算法。库是基于C++的。 -(I plan to dedicate every edition of this software to someone famous who has influenced computers, mathematics, or science.) Version 1.0 of Geometry is dedicated to the father of A
5
- 数值计算中矩阵特征值和特征向量的C++程序-Numerical calculation of eigenvalues of matrix C++ program
ALGO2-1
- lgo2-1.c C program for implementing Algorithm 2.1 Algorithm translated to C by: Dr. Norman Fahrer IBM and Macintosh verification by: Daniel Mathews NUMERICAL METHODS: C Programs, (c) John H. Mathews 1995 To accompany the text: NUME
ALGO2-2
- Algo2-2.c C program for implementing Algorithm 2.2 Algorithm translated to C by: Dr. Norman Fahrer IBM and Macintosh verification by: Daniel Mathews NUMERICAL METHODS: C Programs, (c) John H. Mathews 1995 To accompany the text: NU
ALGO2-3
- Algo2-3.c C program for implementing Algorithm 2.3 Algorithm translated to C by: Dr. Norman Fahrer IBM and Macintosh verification by: Daniel Mathews NUMERICAL METHODS: C Programs, (c) John H. Mathews 1995 To accompany the text: NUM
CODES
- This file conclude of five codes , four of them in Mathematica program and one in C++. 1. Erk4.nb. this code represent the explicit Runge Kutta method of order four for solving first order ODE. 2. RK45.nb This code represent the Embedded Runge Ku
BestFirstSearch_HeapAlgo
- 1. 此程式執行將從路徑讀取一個文字檔 ( 路徑:C:INPUT.TXT ) 2. 執行結束會產生一個排序後的文字檔 ( 路徑:C:OUTPUT.TXT ) 3. 給定的初始盤面一定有解 本程式採用的演算法策略為Best-first search with branch-and-bound algorithm 1. 使用Max heap 實作Priority queue 2. 使用bound function 估計目前盤面走至答案最少需要幾步 第一部分 所謂 h
fast-calculator
- 从数值分析入手,对参考论文中提出的指数及对数函数高精度快速算法进行了分析,并对exp,log两个函数的计算复杂性以及误差作了详细的讨论。并编写了C#程序实现了论文中讨论的关于5个指对函数的数值算法,取得了理想的实验结果。-Starting from the numerical analysis, paper presented to the reference index and logarithmic functions of fast algorithms for high-precisio
Tour-program
- 该程序在C环境下编译通过,共有5个函数。分别是Introduce,shortestdistance,floyed,display及main。 其功能分别是: Introduce:地点介绍函数。 Shortestdistance:计算两地的最短距离。 Floyed:floyed算法求两地的最短距离。 Display:打印两个地点的路径及最短距离至屏幕。 Main:总体控制各函数并提供原始数据。 - Procedures in the C environment co
e.c
- 1 R Finding particular sequences of prime numbers Write a program that finds all sequences of consecutive prime 5-digit numbers, say (a, b, c, d, e, f ), such that b = a + 2, c = b + 4, d = c + 6, e = d + 8, and f = e + 10.-1 R Finding particular
f.c
- Obtaining a sum from a subsequence of digits Write a program that prompts the user for two numbers: an unsigned long , say digits, and an int, say sum, and outputs the number of ways of selecting digits from digits that sum up to sum. For instance,
1006
- 规则1:实现 +、-、X、/ 四则运算,数据仅包含整数,不考虑计算结果溢出的情况 规则2:程序仅需要实现类似"a + b * c / d - e" 这种类型字符串的计算,式子中操作符的个数不超过10个。其他复杂情况不考虑。 例子1: 输入: 1 + 2 输出: 3 输入: 1 + 2 * 3 - 4 / 2 输出: 5-Rule 1: realize+,-X,/arithmetic, data contain only integer, don t consider t
turn-albo-to-ruma-data
- 输入一个不确定位数的数字,将其转化罗马数字,用"X","I","II","III","IV","V","VI","VII","VIII","IX"代表0,1,2,3,4,5,6,7,8,9的罗马数字。 程序不是太严谨,和实际的表示(10应该用X表示,五十用C表示等等)也有差距。受定义类型的限制,位数不能无限多。 程序共用了三种方法,注释掉的是两种麻烦并且占内存多(其实可以修改成和第一种方法占内存一样多)的方法-Enter an uncertain number of digits,
5
- 通过矩阵数组等算法该程序可以用C++计算出线性方程组的解-The program can be used C++ calculate the solution of linear equations, such as through the matrix array algorithms
smooth
- 该代码用来进行五点二次平滑。 形参说明 C N——整型变量,输入参数。等距观测点的个数,要求N≥5。 C Y——实型一维数组,长度为N,输入参数。等距观测点上的数据。 C YY——实型一维数组,长度为N,输出参数。N个等距观测点上的平滑结果。 - THIS IS A PROGRAM FOR CALCULATING AVERAGE OF A TIME SERIES
sgu265
- sgu265:Wizards(计算几何) 题目大意: 一个空间直角坐标系内,对一个点有三种操作: 1.平移(x,y,z)⇒ (x+a,y+b,z+c); 2.缩放(x,y,z)⇒ (ax,by,cz); 3.绕一个向量(x,y,z)顺时针旋转α角(角度制)。 对空间内的m个点给出n个操作,求每个点在操作后的坐标。-265. Wizards time limit per test: 0.5 sec. memory lim
刘长礼WENO爆轰波模拟
- 此文介绍了由江广山(音译)、舒其望(Jiang Guangshan & Shu Chi-Wang, JCP 126 pp202-228, 1996)等人发展的5阶有限差分WENO格式,并提供用C++语言编写的程序源码(不包括坐标变换模块和化学反应模块的源码),采用了面向对象(OO)思想编写程序。所提供的程序仅适用于简单二维矩形边界、可压缩流动、非定常、Euler方程的数值模拟。经坐标变换,可适用更多其他几何外形的计算。源码在Windows 2000, XP, 2003平台、Visual