Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - numerical
Search - numerical - List
DL : 0
计算机常用的计算数值方法,程序可以直接用于工程计算。所有代码c++编写-Computer calculation of commonly used numerical methods, procedures can be directly used for engineering calculations. All code c++ Prepared
Update : 2024-05-02 Size : 493568 Publisher : 李志辉

CG方法 高等数值分析 PCG方法 最速下降法-CG methods of numerical analysis of higher PCG method steepest descent method
Update : 2024-05-02 Size : 1024 Publisher : CAICAI

Hybrid Taguchi-genetic algorithm for global numerical optimization -Hybrid Taguchi-genetic algorithm for global numerical optimization
Update : 2024-05-02 Size : 405504 Publisher : havehuang

DL : 0
MATLAB是一种以数值计算和数据图示为主的计算机软件,并包含适应多个学科的专业软件包,以及完善程序开发功能。 本课程设计旨在要求学生熟悉Matlab的功能,掌握Matlab程序设计和GUI设计的方法,培养学生的应用开发能力,为以后的毕业设计奠定一定的基础。-MATLAB is a numerical calculation and data icon-based computer software, and includes a number of disciplines to adapt to the package, as well as improve the development function. This course is designed to require students to know the function of Matlab, master Matlab programming and GUI design methods, and foster the application of student development capacity, for future graduation project to lay a foundation.
Update : 2024-05-02 Size : 34816 Publisher : xiaowu

C++数值算法 影音版 Numerical Recipes in C++: The Art of Scientific Computing, Second Edition -C++ Numerical algorithm of audio-visual version of Numerical Recipes in C++: The Art of Scientific Computing, Second Edition
Update : 2024-05-02 Size : 20572160 Publisher : zhuiqiu111

数值方法课程中的程序,如GaussSeidel迭代法解方程组,Jacobi迭代法解方程组,SOR迭代法解方程组,杜利特尔矩阵分解以及矩阵的直接解法,拉格朗日插值等11个程序。-Courses in numerical methods, such as iterative method for solution GaussSeidel equations, Jacobi iterative method for solution of equations, SOR iterative method solution equations, Doolittle matrix factorization and matrix of the direct method, Lagrange interpolation 11 procedures and so on.
Update : 2024-05-02 Size : 6144 Publisher : 刘冬

一本介绍半解析数值方法的经典之作,对从事数值分析及方法研究和应用的科研人员是不错的参考资料-Introduce a semi-analytical numerical method of classic, engaged in numerical analysis and methods of research and application of scientific research personnel is a good reference
Update : 2024-05-02 Size : 7130112 Publisher : sjzdh

Numerical Recipes一书中例子的源码所用到的函数集,William H. Press 和 Saul A. Teukolsky 所著-One example of the book Numerical Recipes source code used by the function sets, William H. Press and Saul A. Teukolsky book
Update : 2024-05-02 Size : 168960 Publisher : 吴军

DL : 0
《MATLAB程序设计教程》电子教案 第1章 MATLAB操作基础.ppt 第8章 MATLAB数值积分与微分.ppt 第12章 Simulink动态仿真集成环境.ppt 第13章 在Word环境下使用MATLAB.ppt-" MATLAB Programming Guide" e-lesson plans Chapter 1 basic MATLAB operations. Ppt Chapter 8 MATLAB numerical integration and differentiation. Ppt Chapter 12 Simulink dynamic simulation integrated environment. Ppt Chapter 13 in the Word environment MATLAB.ppt
Update : 2024-05-02 Size : 189440 Publisher : 徐金

An Introduction to Programming and Numerical Methods in MATLAB.pdf
Update : 2024-05-02 Size : 2056192 Publisher : zhu linwei

it is a Numerical Computing With MATLAB guide to professional programmers
Update : 2024-05-02 Size : 4017152 Publisher : peyman

Fortran 90 versions of all the Numerical Recipes routines appear in the following Chapters B1 through B20, numbered in correspondence with Chapters 1 through 20 in Volume 1. Within each chapter, the routines appear in the same order as in Volume 1, but not broken out separately by section number within Volume 1鈥檚 chapters. There are commentaries accompanying many of the routines, generally following the printed listing of the routine to which they apply. These are of two kinds: issues related to parallelizing the algorithm in question, and issues related to the Fortran 90 implementation. To distinguish between these two, rather different, kind
Update : 2024-05-02 Size : 2717696 Publisher : syamsuri

Fortran has always been the principal language used in the fields of scientific, numerical, and engineering programming, and a series of revisions to the standard defining successive versions of the language has progressively enhanced its power and kept it competitive with several generations of rivals. Beginning in 1978, the technical committee responsible for the development of Fortran standards, X3J3 (now called J3), laboured to produce a new, much- needed modern version of the language, Fortran 90. Its purpose is to "promote portability, reliability, maintainability, and efficient execution... on a variety of computing systems". The standard was published in 1991, and work began in 1993 on a minor revision, known informally as Fortran 95. Now this revised
Update : 2024-05-02 Size : 2984960 Publisher : syamsuri

(有源代码)数值分析作业,本文主要包括两个部分,第一部分是常微分方程(ODE)的三个实验题,第二部分是有关的拓展讨论,包括高阶常微分的求解和边值问题的求解(BVP).文中的算法和算例都是基于Matlab计算的.ODE问题从刚性(STIFFNESS)来看分为非刚性的问题和刚性的问题,刚性问题(如大系数的VDP方程)用通常的方法如ODE45来求解,效率会很低,用ODE15S等,则效率会高多了.而通常的非刚性问题,用ODE45来求解会有很好的效果.从阶次来看可以分为高阶微分方程和一阶常微分方程,高阶的微分方程一般可以化为状态空间(STATE SPACE)的低阶微分方程来求解.从微分方程的性态看来,主要是微分方程式一阶导系数大的时候,步长应该选得响应的小些.或者如果问题的性态不是太好估计的话,用较小的步长是比较好的,此外的话Adams多步法在小步长的时候效率比R-K(RUNGE-KUTTA)方法要好些,而精度也高些,但是稳定区间要小些.从初值和边值来看,也是显著的不同的.此外对于非线性常微分方程还有打靶法,胞映射方法等.而对于微分方程稳定性的研究,则诸如相平面图等也是不可缺少的工具.值得提出的是,除了用ode系类函数外,用simulink等等模块图来求解微分方程也是一种非常不错的方法,甚至是更有优势的方法(在应用的角度来说).-(Source code) numerical analysis homework, this docment includes two parts, the first is ordinary differential equations (ODE) of the three examples, the second part is about the expansion of the discussion, including the higher-order ordinary differential & boundary value solution Problems (BVP). the text of the algorithm and numerical examples are based on the Matlab. ODE from the rigid (STIFFNESS) look into the issue of non-rigid and rigid problem, rigid problems (such as large coefficient VDP equation) such as using the always method ODE45 used to solve the problems , efficiency will be low, with ODE15S the other hand, many of the high efficiency. and the usual problem of non-rigid, there will be used to solve ODE45 very good results. Judging from the order can be for high-order differential equations and first-order ordinary differential equations, higher-order differential equations can be transformed into a general state space (STATE SPACE) used to solve the low-order different
Update : 2024-05-02 Size : 351232 Publisher : wjl

VC/MFCNS
DL : 0
N-S方程的数值解和紊流模型电子书,计算水力学的经典参考书。-The numerical solution of NS equation turbulence model and e-books, the classic calculation of hydraulics reference.
Update : 2024-05-02 Size : 4413440 Publisher : rsp2001

一维,二维平板第一类边界非稳态传热 一维有限体积非稳态传热-unsteady heat transfer numerical compute one dimension or two dimensions
Update : 2024-05-02 Size : 70656 Publisher : qin

matlabFDTD
DL : 0
一个有关FDTD数值色散问题的MATLAB程序,可以看看影响情况-A FDTD numerical dispersion problem of the MATLAB program, you can look at the impact
Update : 2024-05-02 Size : 1024 Publisher : 长空一笑

DL : 0
此程序为数值积分的源程序,里面包含了多个有用的程序,供大家参考!-This procedure for the numerical integration of the source code, which contains a number of useful procedures for your reference!
Update : 2024-05-02 Size : 12288 Publisher : hsj

这个程序是一个用fortran编写的二维腔体对流的数值研究-This procedure is a fortran prepared using two-dimensional cavity of the numerical study of convective
Update : 2024-05-02 Size : 6144 Publisher : 符号化

DL : 0
MATLAB入门教程 1.MATLAB的基本知识 2.数值分析 3.基本xy平面绘图命令 4.三维网图的高级处理 -MATLAB Tutorial 1. 2 of the basic knowledge of MATLAB. Numerical Analysis 3. The basic drawing commands xy plane 4. Three-dimensional map of the high-level processing ...
Update : 2024-05-02 Size : 128000 Publisher : 黄虎
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.