- 积分
- 214
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-10-31
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Data Analysis in the Earth Sciences Using MATLAB这是Dr.Middleton的著作中所涉及到的代码包
这本书目前还没有找到电子版 希望有吧友能贡献学习!
其中包括一些我们经常使用的.m文件
举例
function fu = flrnz(t,x)% fu = flrnz(t,x)% defines the Lorenz equations% t is time and x is a vector with% three components, fu is the vector% of their derivatives wrt t% Written by Gerry Middleton, Jan 1997global r; % a control coefficientfu = zeros(3,1);sig = 10; % a second coefficientb = 8/3; % and a thirdfu(1) = 10*(x(2) - x(1));fu(2) = r*x(1) - x(2) - x(1)*x(3);fu(3) = x(1)*x(2) - b*x(3);
|
|