搜索资源列表
LanExplorer_v1.62
- 最好的局域网搜索软件,支持同时搜索共享文件、FTP、HTTP资源。 1.方便快捷地搜索、浏览局域网资源。多线程搜索局域网上所有的工作组、主机、打印机、共享文件、FTP文件、WEB服务器。 2.可以按照网上邻居、工作组或者按照IP地址段自动搜索所有共享/FTP的mp3、电影或自定义搜索的文件; 3.内置nbtstat,能快速查找某一IP网段内的所有主机,并根据IP地址得到对方主机的主机名、工作组名、用户名、MAC地址,速度极快。能将扫描和搜索的结果保存成文本文件或excel
Gap
- 算法实现题1-5 最大间隙问题 « 问题描述: 最大间隙问题:给定n 个实数x , , xn 1 2 ,求这n 个数在实轴上相邻2 个数之间的最 大差值。假设对任何实数的下取整函数耗时O(1),设计解最大间隙问题的线性时间算法。 « 编程任务: 对于给定的n 个实数n x , x , , x 1 2 ,编程计算它们的最大间隙。 « 数据输入: 输入数据由文件名为input.txt的文本文件提供。文件的第1
NetCDF3.6.1Beta1.Win32.for.CVF.IVF
- 0. Tree of the prebuilt NetCDF-3.6.1 Beta1 Win32 file "NetCDF3.6.1Beta1.Win32.for.CVF.IVF.rar" 1. Using pre-built binaries 2. Using NetCDF libraries in Compaq Visual Fortran (CVF) 6.* and Intel "Visual" Fortran(IVF) 9.*, 10.
libmesh-0.6.3-rc1
- 一个用来实现偏微分方程中网格的计算库,很好用呀!-A partial differential equation used for the calculation of the grid library, very good with it!
FLCH3eg5
- 采用3-6-1型bp网络学习非线性正弦信号sin(2pi*k/50),其中2*pi/50是正弦信号的频率,k是采样次数。-Bp-based 3-6-1 network used to learn non-linear sinusoidal signal sin (2pi* k/50), which is 2* pi/50 frequency sinusoidal signal, k is the sampling frequency.
A0_005
- 验证哥德巴赫才:任何一个充分大的偶数N(≥4),可以用两个素数之和表示. 如 4=2+2 6=3+3 8=3+5 98=17+79-Verify Goldbach before: Any one sufficiently large even number N (≥ 4), can be expressed the sum of two primes. Such as 4 = 2+2 6 = 3+3 8 = 3+5 98 = 17+79
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
netcdf-3.6.2.tar
- netcdf 气象数据通用格式 二进制文件读写 可用的源码-netcdf binary file of meteorological data in a common format to read and write the source code available
Integraller
- 6.1 数值积分类设计 6.2 变步长梯形求积法 6.3 变步长辛卜生求积 6.4 自适应梯形求积法 6.5 龙贝格求积法 6.6 计算一维积分的连分式法 6.7 高振荡函数求积法 6.8 勒让德-高斯求积法 6.9 拉盖尔-高斯求积法 6.10 埃尔米特-高斯求积法 -6.1 numerical integrations class design 6.2 change the length of stride trapezoidal men
Euler_DG_Quadrilateral_2D
- 自己写了一个二维Euler方程的间断有限元程序 上次发了一个三角形单元的程序 因为不是曲边单元 所以在圆柱后面容易形成涡 现在把程序改为曲边四边形单元了 没有涡出现 单元是8节点四边形单元 节点编号顺序是 1 5 2 6 3 7 4 8 也就是四个角点依次 是1 2 3 4 然后是边的中点编号 5 6 7 8. 时间推进采用 Runge-Kutta 方法 数值通量采用全局Lax-Friedrichs通量 仍然不能捕捉激波 因为
6
- 编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数1/1+1/3+...+1/n(利用指针函数)。 -Write a function, the input n is even, the call function evaluation 1/2+1/4+...+ 1/n, when the input n is odd, call the function 1/1+1/3+...+ 1/n (using the pointer function
EX_2_SPLINE3
- 第二类边界条件三次样条插值多项式,参考,施吉林等编著《计算机数值方法》第三版,第三章第6节,6-3中三次样条插值算法设计。-Spline Interpolation
tcal5.6
- 文本计算器说明 一、用法: 1、文本计算器具有关闭时是否保存计算结果的功能、计算结果的小数位选择功能,小数位0表示计算精度; 2、文本计算器打开时,可以自动加载上次的计算结果以及上次关闭时窗口位置; 3、双击计算器的文本框可打开数字键盘,方便笔记本用户使用; 4、输入数学表达式后,按回车键,自动计算结果; 5、一个表达式必须在一行内全部输入; 6、表达式不输入内容时直接回车,不再出现错误提示; 7、需要当记事本用时,在本行最前面加入 号,可不出现错误提示!
Josephus--Problem
- 问题描述:n个人围成一个环,从第i个开始,由1到interval不断报数,凡报到interval的出列,直到环空为。出列的人按先后顺序构成一个新的序列。例如,n=8,i=2,interval=3.则输出序列为:4 7 2 6 3 1 5 8-Problem descr iption: n individuals into a ring, from the beginning, I by 1 to interval number off, report any interval matri, ti
6.3.py
- Saddle point searching algorithm
2
- 输出“魔方矩阵”。所谓魔方阵是指这样的矩阵,它的每一行、每一列和对角线之和均相等。例如,三界魔方阵为 8 1 6 3 5 7 4 9 2 要求输出1 -n*n的自然数构成的魔方阵。-Cube matrix output . The so-called magic matrix is the matrix, which each row, each column and diagonal and are equal. For example, three cube array
6
- 一个数如果恰好等于它的因子之和,这个数就称为完数。例如,6的因子为1、2、3,而6=1+2+3,因此6是完数。编程求1000以内所有完数。-If a number is exactly equal to the sum of its factors, this number is called the complete number. For example, the 6 factor is 1, 2, 3, and 6=1+2+3, so the number 6 is finished. P
petsc-3.6.3.tar
- 科学计算的可移植扩展的工具箱,在http://www.mcs.anl.gov/petsc/index.html中可得到-available in http://www.mcs.anl.gov/petsc/index.html
CFL3D-6.7
- NASA的CFD计算流体力学软件,功能强大,用途广,可用于科研和实际工程计算。 源代码,已开源,可用于科研(CFL3D is a structured-grid, cell-centered, upwind-biased, Reynolds-averaged Navier-Stokes (RANS) code. It can be run in parallel on multiple grid zones with point-matched, patched, overset, or em
gmsh-3.0.6-source
- gmsh-3.0.6-source开源程序,实现网格划分等模块功能(Gmsh-3.0.6-source program, can achieve manymodule functions such as grid partition)