<> (1) Numpy 库 Numpy中的矩阵函数 np.diagonal(A) 返回由A中的主对角元素组成的一维矩阵 np.diagonal(A,1) 返回由A中的第一副对角元素组成的一维矩阵 np.trace(A) 返回A中的主对角元素的和 np.argmax(A,axis= 0) 在0轴上,最小的数 np.identity(3) 返回3维的单位矩阵 np.dot(a,b) 常用的: 若a,b均为行矩阵,则返回其内积(对应元素相乘,最后再相加,返回值为标量) 若a,b均为n维矩阵,则返回…
目前正在阅读MATLAB相关的书籍:Numerical Methods with MATLAB,现在感觉这本书写的还行, 细致基础,而且写的比较清楚,同时把malab和数值算法结合在一起. 目前刚看完第一章,下面是相关的命令跟工具tips 1. 保存和加载数据的语句 save or load 2. 画图相关的命令 subplot:并不是用于画图,感觉是获得窗口句柄的. plot.hist:2d作图的函数 title.label.label.axis:用于控制显示的语句,根据字面理解就可以了. m…
基于我们在线性代数中学习过的知识,我们知道解线性方程组本质上就是Gauss消元,也就是基于增广矩阵A的矩阵初等变换.关于数学层面的内容这里不做过多的介绍,这里的侧重点是从数值计算的角度来看这些常见的问题. 那么基于Gauss消元的算法,我们将会很好理解如下的Matlab代码: for j = 1:n-1 for i = j+1 : n mult = A(i,j)/A(j,j); A(i,:) = A(i,:) – mult*A(j,:);    %这里改写成A(i , j:n) = A(i,j:…
在许多生产时间问题中,我们根据已知条件往往会列出一个一元非线性方程,一个最典型的例子就是银行存款的问题,由于其利息需要基于前一年的本息和,因此列出来的方程x的指数往往是高次的.还有物理问题当中一系列用微分方程导出的一元非线性方程.因此如何求解一元非线性方程,是计算数学要解决的重要问题之一. 牛顿法: 牛顿法可以通过Taylor定理导出: 不幸的是,单纯的牛顿法并不是使用所有情况的,下面给出一个经过较为精确的绘图利用牛顿迭代最终无解的情况:…
In a computer simulation of the real world, physical quantities, which usually have continuous distributions governed by partial differential equations (PDEs), can be solved by numerical methods such as finite element method (FEM) and boundary elemen…
[it-ebooks]电子书列表   [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Objective-C to develop iPhone games http://it-ebooks.info/book/3544/Learning Web App Development || Build Quickly with Proven JavaScript Techniques http:…
OpenCASCADE Root-Finding Algorithm eryar@163.com Abstract. A root-finding algorithm is a numerical method, or algorithm, for finding a value x such that f(x)=0, for a given function f. Such an x is called a root of the function f. In OpenCASCADE math…
Abstract Bayesian networks are a powerful probabilistic representation, and their use for classification has received considerable attention. However, they tend to perform poorly when learned in the standard way. This is attributable to a mismatch be…
-------------------------------------------------------------- Chapter 1: Introduction to Discrete Differential Geometry: The Geometry of Plane Curves . A better approximation than the tangent is the circle of curvature. . If the curve is sufficientl…
[转]Python学习资料和教程pdf 开发工具: Python语言集成开发环境 Wingware WingIDE Professional v3.2.12 Python语言集成开发环境 Wingware WingIDE Professional v3.2.9.1 高效Python/Django开发工具:JetBrains PyCharm v1.1.1 (附注册机) Python和Django开发工具:JetBrains PyCharm v1.1 学习资料: Python 3程序开发指南 (第二…