前几日我发了一个帖子,预告自己要研究一下  Numerical Analysis 非常多人问我为啥,我统一回答为AI-----人工智能 我在和教授聊天的时候,忽然到了语言发展上 我说:老S啊(和我关系比較亲的外国人,我通常会直接叫名字的首字母),Matlab是收费软件.TMD这么贵,并且琢磨的点也少.市面上有非常多的语言能够替代它.为啥matlab还活着. 他说:额.我也不知道 我说:近几年python发展非常快,图形处理能力比想象的要强大,大有替代matlab之势,为啥不用python. 他说…
2ed,  by Timothy Sauer DEFINITION 1.3A solution is correct within p decimal places if the error is less than 0.5 × 10$^{−p}$ .-P29Bisection Method的优点是计算次数(step)是确定的(interval<精度).后面介绍的算法的interval是不确定的, 所以什么时候结束计算呢?不知道.所以定义“stopping criteria’’来决定什么时候结束…
2ed,  by Timothy Sauer DEFINITION 1.3A solution is correct within p decimal places if the error is less than 0.5 × 10$^{−p}$ .-P29Bisection Method的优点是计算次数(step)是确定的(interval<精度).后面介绍的算法的interval是不确定的, 所以什么时候结束计算呢?不知道.所以定义“stopping criteria’’来决定什么时候结束…
PART1  <求解方程> 1,二分法 def bisect(f,a,b,TOL=0.000004): u_a = a u_b = b while(u_b-u_a)/2.0 > TOL: c = (u_a+u_b)/2.0 : break : u_b = c else: u_a = c u_c = (u_a + u_b) / 2.0 return u_c f = lambda x: x*x*x + x - ret = bisect(f,-1.0,1.0) print(ret) print…
In many cases, the smallness of the residual means that the approximation is close to the solution, i.e., 残差:结果的差值 误差:近似解与解的差值 https://en.wikipedia.org/wiki/Residual_(numerical_analysis) Loosely speaking, a residual is the error in a result. To be pr…
Top Numerical Libraries For C# AlgLib (http://alglib.net) ALGLIB is a numerical analysis and data processing library. Is supports many languages but has been entirely rewritten in naitive C#, and functions across many operating systems. It is open so…
Kinect SDK v2预览版,获取数据的基本流程的说明.以及取得Color图像的示例程序的介绍. 上一节,是关于当前型号Kinect for Windows(后面称作Kinect v1)和次世代型的Kinect for Windows的开发者预览版(后面称作Kinect v2 预览版)的配置比较和介绍. 从这一节开始,是Kinect的各种数据的取得方法的比较和介绍.   Color Camera Kinect和通常的Web摄像头一样,搭载了 Color Camera,可以取得Color图像.…
开始学习Python,之后渐渐成为我学习工作中的第一辅助脚本语言,虽然开发语言是Java,但平时的很多文本数据处理任务都交给了Python.这些年来,接触和使用了很多Python工具包,特别是在文本处理,科学计算,机器学习和数据挖掘领域,有很多很多优秀的Python工具包可供使用,所以作为Pythoner,也是相当幸福的.如果仔细留意微博和论坛,你会发现很多这方面的分享,自己也Google了一下,发现也有同学总结了"Python机器学习库",不过总感觉缺少点什么.最近流行一个词,全栈工…
\documentclass[UTF8,landscape]{ctexart}%UTF8,ctexart中文支持,landscape横向版面 \usepackage{tikz}%画图 \usepackage{geometry}%页边距设置\geometry{left=0.5cm,right=0.5cm,top=2.5cm,bottom=0.5cm} \usepackage{fancyhdr}%页头页尾页码设置 \pagestyle{fancy} \begin{document} \title{\…
Computational Geometry The Geometry Center (UIUC) Computational Geometry Pages (UIUC) Geometry in Action (UIC) Geometric Resource (UFL) CAGD Applets (UKA) Voronoi/Delaunay Applet (CornellUniversity) Directory of Computational Geometry Software (Dr. N…