摘要: % right-hand side of arenstorf problemfunction yDot = arenstorf(t,y)global mu muHat% unpack yu1 = y(1);u2 = y(2);u1Dot = y(3);u2Dot = ... 阅读全文
posted @ 2015-03-28 07:43 vigorpush 阅读(123) 评论(0) 推荐(0) 编辑
摘要: function lorenzgui%LORENZGUI Plot the orbit around the Lorenz chaotic attractor.% This function animates the integration of the th... 阅读全文
posted @ 2015-03-28 07:42 vigorpush 阅读(152) 评论(0) 推荐(0) 编辑
摘要: % forward Euler demo% take two steps in the solution of % dy/dt = y, y(0) = 1% exact solution is y(t) = exp(t)clear allclose all% the ... 阅读全文
posted @ 2015-03-28 07:40 vigorpush 阅读(355) 评论(0) 推荐(0) 编辑
摘要: % matlab script to test efficiency of% Euler's method, classical Runge-Kutta, and ode45% on Arenstorf orbit problemclose allclear all%... 阅读全文
posted @ 2015-03-28 07:40 vigorpush 阅读(327) 评论(0) 推荐(0) 编辑
摘要: % matlab script to demonstrate use of Gauss quadratureclear all close all% first derive the 2-point Gauss quadrature ruleeq1 = 'w1*1 +... 阅读全文
posted @ 2015-03-28 07:39 vigorpush 阅读(360) 评论(0) 推荐(0) 编辑
摘要: Matlab 在有些时候太过去强大,强大到几乎所有的数学问题都可以解决。在这里,Matlab就像数学版的Vim,对于一般的使用者还是不想编程,想要更加的直接直观的数学处理工具,这里向大家介绍minitab!这里我会把我平时所看的资料和大家分享,同样的,我基本上看的是国... 阅读全文
posted @ 2015-03-28 06:33 vigorpush 阅读(199) 评论(0) 推荐(0) 编辑
摘要: IntroductionIn this lesson, we'll continue our investigation of hypothesis testing. In this case, we'll focus our attention on a hypot... 阅读全文
posted @ 2015-03-28 02:28 vigorpush 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Standard deviation, represented by the Greek Letter sigma σ, is a measure of dispersement in statistics. It shows you how spread out y... 阅读全文
posted @ 2015-03-27 14:41 vigorpush 阅读(158) 评论(0) 推荐(0) 编辑
摘要: In each case, we'll illustrate how to perform the hypothesis tests of this lesson using summarized data.Hypothesis Test for One Varian... 阅读全文
posted @ 2015-03-27 14:24 vigorpush 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Sample MeansThe sample mean from a group of observations is an estimate of the population mean. Given a sample of sizen, consider n i... 阅读全文
posted @ 2015-03-27 13:19 vigorpush 阅读(220) 评论(0) 推荐(0) 编辑