
Matlab
文章平均质量分 76
aris_zzy
理想主义者,执着的求知者!!ariszheng#gmail.com #换成@
展开
-
偏最小二乘法 matlab程序
偏最小二乘法 matlab程序函数:function [T,P,U,Q,B,W] = pls (X,Y,tol2)% PLS Partial Least Squares Regrassion%% [T,P,U,Q,B,Q] = pls(X,Y,tol) performs particial least squares regrassion% between the independen转载 2010-01-07 13:22:00 · 9632 阅读 · 1 评论 -
2008 MATLAB ® 最新技术研讨会 matlab 进行高级编程 与 进行并行计算 相关资料(个人推荐)
http://www.mathworks.cn/programs/downloads/download_attendees_bj.html?s_v1=1-6HFGEZ_1-6G70BF研讨会演讲内容Whats New in R2008 (R2008a的最新特性)Data Analysis with MATLAB (使用MATLAB® 进行数据分析)Application Depl原创 2008-07-03 10:40:00 · 1286 阅读 · 0 评论 -
matlab+excel 联合编程
最近,在尝试使用matlab+excel+数据库做金融策略code,为什么这样做,主要有两点:1.使用者对excel比较熟悉,一般的金融从业者大多喜欢用excel。2.matlab的强大数值计算功能可以提供后台计算。我相信,两个完美结合会有不错的结果。可以使用的方法有excelink,matlab excel build我还做的一个excelink的视频教程,具体参见htt原创 2008-06-28 14:32:00 · 6917 阅读 · 3 评论 -
计算hurst指数的matlab程序
% The Hurst exponent%--------------------------------------------------------------------------% The first 20 lines of code are a small test driver.% You can delete or comment out this part when you a转载 2008-09-14 23:15:00 · 16855 阅读 · 7 评论 -
分形 Fractal 程序
NumOfPts 越大效果越好 NumOfPts = 10000;iterations = 50;pts = zeros(NumOfPts,2);for j = 1:NumOfPts x = rand(1); y = rand(1); for i = 1:iterations p = rand(1); if p xn = 0; yn = .16*转载 2008-09-15 01:00:00 · 1273 阅读 · 0 评论 -
matlab高级编程之内存管理
熟悉memory命令memory - Display memory informationSyntax memoryuserview = memory[userview systemview] = memoryDescriptionmemory displays information showing how much memory is available原创 2008-06-26 19:44:00 · 4016 阅读 · 0 评论 -
正在读risk and asset allocation - Attilio Meucci(Lehman brothers)
正在读risk and asset allocation - Attilio Meucci(Lehman brothers)2008-08-18 15:32粗看了一下,这是本难得到好书,还配有完备的matlab程序,不过需要比较不错的数学基础http://www.pinggu.org/bbs/dispbbs.asp?boardid=5&id=301890(电原创 2008-08-18 19:34:00 · 1852 阅读 · 1 评论 -
Financial Modeling and Analysis (FMA) 视频教程
http://www.mathworks.cn/company/events/webinars/index.html? By Application Most Recent By Product View all转载 2008-05-03 13:30:00 · 1681 阅读 · 0 评论 -
一种给自己的maltab程序注册限制运行次数的方法
转自:http://genial.ycool.com/post.703298.html % 所谓的加密部分,通常用在OpeningFcn中 filename=matlabroot; % 获得matlab的根目录,当然你也可以在系统根目录或者是tmp目录下 filename=[filename,/DataAnalysisSn.bin]; % 创建的加密文件 if(exist(filename转载 2008-04-14 16:51:00 · 1527 阅读 · 0 评论 -
《精通MATLAB GUI设计》(朋友写的帮宣传)
(朋友写的帮宣传)《精通MATLAB GUI设计》(含光盘1张)即将上市内容简介本书结合高校MATLAB应用教学和工程应用实际的需要,从实用角度出发,循序渐进地讲述MATLAB GUI设计,并通过大量的设计实例和典型应用实例,帮助读者掌握从基本的数据可视化,到高级的交互式图形界面设计技术。全书分基础入门、设计提高和综合应用三篇逐步、系统地展开。基础篇讲述MATLAB及GUI编程概述,二原创 2008-01-21 17:15:00 · 5410 阅读 · 4 评论 -
《MATLAB语言常用算法程序集(含光盘1张)》帮朋友宣传!
帮朋友宣传!《MATLAB语言常用算法程序集(含光盘1张)》已正式出版!内容简介本书精选了科学和工程中常用的200余个算法,全部采用MATLAB语言编程实现,并结合实例对算法程序进行验证和分析。本书分为上下两篇,上篇为MATLAB基础篇,主要介绍MATLAB的基本功能和操作以及MATLAB程序设计的入门知识;下篇为算法程序篇,主要讲述以下方面常用算法的MATLAB实现,包括插值、函原创 2008-07-02 13:53:00 · 2916 阅读 · 0 评论 -
如何用Matlab绘制heat map
>>name = {AA AAPL ABT AIG AXP BA BAC CVX DO DOW IBM GM TGT EBAY GE T VZ CAG转载 2009-12-31 12:42:00 · 5535 阅读 · 2 评论 -
Matlab数据库编程-转载两篇
有感于网上查到了大量相当有帮助的技术性文章,这里也把我前段时间实现的一个功能程序公布出来,供需者参考。 功能简介:服务器R(remote)只负责网站的运行和访问,每天获得一批新的原始数据,服务器L(local)负责后台运算,自动定时从服务器R的mysql里读取数据,在L上经过matlab编写的算法程序运算后再远程将结果写回R的数据库以实现网站的更新。全程无人值守。(L负责后台运算,安装matl转载 2009-12-30 15:52:00 · 7181 阅读 · 3 评论 -
风险管理KMV模型Matlab计算----实例分析
添加两个KMV模型文档 2009-6-5http://www.business.uiuc.edu/gpennacc/MoodysKMV.pdfhttp://www.prmia.org/Chapter_Pages/Data/Chicago/Kurbat_Paper.PDF风险管理KMV模型Matlab计算----实例分析 %test KMV%r: risk-f原创 2009-05-27 16:29:00 · 14812 阅读 · 3 评论 -
买保险的赚与赔---数量模拟分析
买保险的赚与赔---数量模拟分析ariszheng 2009-5-27买养老的分红险赚与赔? 大家都没有仔细研究过,现在使用matlab对平安的一款产品进行分析: 总结:养老保险类似与一种集合理财或集合收益分配产品,为让产品收支平衡,假设在10%的贴现率基础上分析,在30~100岁不同时间死亡的人净收益一定不同。41~64岁之间死亡净收入为负。购买养老保险也需要对自己寿命有正确的原创 2009-05-27 13:30:00 · 3650 阅读 · 0 评论 -
金融可视化研究(Quant visualization)-----Heat map
最近听了Nividia关于可视化计算的技术后,感想颇深。如果能把事务或者数据以图形的方式展现出来,可以给人以最直接的感觉。金融市场的行数数据量巨大,金融市场交易品种越来越多(股票数、基金数、债券数、衍生品等),如果将这个数据以更直接的方式展现在投资决策者眼睛前,可以非常有效帮助其了解市场整体情况,更迅速正确的做出投资决策。 下面是自己用matlab做的一个股票市场收益情原创 2009-05-20 13:22:00 · 2829 阅读 · 0 评论 -
Path-Dependent Option and Hedging
Path-Dependent OptionWhereas the value of a traditional option depends only on the price of the underlying on the day of exercise or expiration, the value of a path-dependent option depends pa转载 2009-05-05 09:27:00 · 1298 阅读 · 0 评论 -
(宣传)第六届MATLAB应用技术研讨会(北京),2009年5月16号
http://www.ilovematlab.cn/thread-20843-1-1.html一,会议名称,主题,贵宾 (Topic)第六届Matlab应用技术研讨会(北京),我们同时欢迎天津,石家庄等附近城市的会员过来。本次研讨会的主题是: 1:通过聆听专家演讲,全面了解Mathworks产品在研究领域里应用,拓展自己的视野。 2:通过跟专家面对面接触,讨论自己感兴趣的话原创 2009-04-29 08:29:00 · 990 阅读 · 0 评论 -
MSN Money Stock Quotes--Excel获取国内外实时股票行情--将股票报价数据插入工作区
具体参考http://quanthr.com/bbs/thread-2735-1-1.html将股票报价数据插入工作区适用于: Microsoft Office Excel 2003, OneNote 2003, Outlook 2003, PowerPoint 2003, Publisher 2003, Word 2003 通过 Microsoft Office转载 2009-04-22 17:18:00 · 9120 阅读 · 1 评论 -
Multiple Traveling Salesman Problem (M-TSP) Genetic Algorithm (GA) 多旅行商问题
function [opt_rte,opt_brk,min_dist] = mtsp_ga(xy,dmat,salesmen,... pop_size,num_iter,singles,show_plots,show_waitbar)% MTSP_GA Multiple Traveling Salesman Problem (M-TSP) Genetic Algorithm (GA)%转载 2008-03-31 16:25:00 · 2660 阅读 · 2 评论 -
matlab读取excel,txt文件函数
注意matlab不识别中文,读写的文件中最好不含有中文excel读取函数 xlsreadtext 读取函数csvreadXLSREAD Get data and text from a spreadsheet in an Excel workbook. [NUMERIC,TXT,RAW]=XLSREAD(FILE) reads the data specified in the原创 2008-03-31 21:04:00 · 18543 阅读 · 4 评论 -
matlab 小波工具箱 wavelab
Link to the Download Page Windows Installation To follow these instructions you will need:(1) An Intel platform box running Win 2000 or XP. (2) A program such as WinZip which can un-zip a .zip转载 2008-03-20 15:29:00 · 3607 阅读 · 2 评论 -
MatLab 知识小结
MatLab 知识小结matlab常用到的永久变量。ans:计算结果的默认变量名。i j:基本虚数单位。eps:系统的浮点(F10a9Bg个oht):inf: 无限大,例1/0nan NaN:非数值(N航a nmnb谢)pi:圆周率n(n=3.1415926..)。realmax:系统所能表示的最大数值。realmin: 系统所能表示的最小数值,nargin: 函数的转载 2007-10-12 19:51:00 · 9211 阅读 · 3 评论 -
MATLAB 的发展历程和影响
MATLAB 的发展历程和影响MATLAB 名字由MATrix 和 LABoratory 两词的前三个字母组合而成。那是20 世纪七十年代后期的事:时任美国新墨西哥大学计算机科学系主任的Cleve Moler 教授出于减轻学生编程负担的动机,为学生设计了一组调用LINPACK 和EISPACK 库程序的“通俗易用”的接口,此即用FORTRAN 编写的萌芽状态的MATLAB。经几年的校际流传,在Li转载 2007-08-01 10:07:00 · 4476 阅读 · 0 评论 -
Matlab的 m文件源码... 是开源吗...function edit
Matlab的 m文件源码... 是开源吗...function edit平时写程序多用matlab 也算是精通了...........但是matlab不能做软件,不能像C/C++,java那样写成 BS, CS 的可用软件matlab 如果你想看 regress的源m代码,你可以在 commond windows上输入 edit regress就可以看到regress的代码,原创 2007-07-23 22:39:00 · 2593 阅读 · 0 评论 -
从 matlab 创始人 看 matlab
matlab的两个创始人 一个是电子工程出身 一个是数值计算出身 matlab的基础雄厚Cleve Moler很NB..........LINPACK and EISPACK 也是他的作品 -----------------------------------------------------------------------------------------------------原创 2007-07-08 18:56:00 · 3208 阅读 · 0 评论 -
matlab程序优化 (期权计算为例)
最近有人问我编写matlab程序要注意什么...?下面就写一些首先我开始编写matlab程序的时候也不怎么注意它的效率问题,能出结果就行了,呵呵管那多干什么不是给自己找事的。可是随着遇到的问题越来越复杂,matlab的计算时间越来越长,有时难以忍受,就专向C/C++了,C/C++似乎比matlab复杂多了,但效率很高,后来又接触到了一些程序优化,算法优化实在是问题复杂不得不作了,matlab(内核原创 2007-02-18 10:34:00 · 6661 阅读 · 2 评论 -
聚类算法Kmeans-----matlab code
function [cid,nr,centers] = cskmeans(x,k,nc)% CSKMEANS K-Means clustering - general method.%% This implements the more general k-means algorithm, where % HMEANS is used to find the initial partiti转载 2006-06-26 10:31:00 · 5413 阅读 · 2 评论 -
数学开发软件包 常用数值计算库
数学开发软件包常用数值计算库现在一个也不会用。。。。 一个也没搞到。。。。有应验的给我发给邮件 谢谢linpack 软件名称 Linear Algebra Package 程序设计语言 Fortran 77 发布日期 1980 资源网址 http://www.netlib.org/linpack 下载专栏 Linpack压缩包 功能概述 解线性方程和线性最小二乘问题的子程序包(各项性能已经被la转载 2006-06-09 00:23:00 · 5809 阅读 · 1 评论 -
《运筹学与最优化matlab编程》 正在编写ing.......
运筹学与最优化matlab编程主要根据吴祈宗教授 《运筹学》,《运筹学与最优化方法》的方法,算法的matlab实现。有什么建议 和 需求的 请与我联系。(写东西也挺累的,艾... 有时间就写点 ...)初定目录:书名:运筹学与最优化matlab编程基本结构:简略算法说明+对应matlab函数说明+实例演示1. 运筹学概述介绍运筹学基本思想以及实际原创 2007-10-13 13:41:00 · 3006 阅读 · 2 评论 -
matlab优化工具箱介绍
在生活和工作中,人们对于同一个问题往往会提出多个解决方案,并通过各方面的论证从中提取最佳方案。最优化方法就是专门研究如何从多个方案中科学合理地提取出最佳方案的科学。由于优化问题无所不在,目前最优化方法的应用和研究已经深入到了生产和科研的各个领域,如土木工程、机械工程、化学工程、运输调度、生产控制、经济规划、经济管理等,并取得了显著的经济效益和社会效益。用最优化方法解决最优化问题的技术称转载 2007-11-03 20:27:00 · 16188 阅读 · 0 评论 -
Brownian motion 布朗运动 matlab
n=1000;dt=1;y=[0 cumsum(dt^0.5.*randn(1,n))]; % standard Brownian motionplot(0:n,y);三维npoints = 5000;dt = 1;bm = cumsum([zeros(1, 3); dt^0.5*randn(npoints-1, 3)]);figure(1);plot3(bm(:, 1), bm(:原创 2008-03-18 15:04:00 · 6430 阅读 · 0 评论 -
Stochastic simulation using MATLAB 随机过程matlab编程
UPPSALA UNIVERSITY : Department of Mathematics : <a title="Matematicalstatistics" href="http://www.math.uu.se/matstat">Mathematical Statistics Stochastic simulation using MATLABIngemar Kaj原创 2008-03-18 11:38:00 · 3900 阅读 · 0 评论 -
matlab求解非线性方程组 fsolve - Solve system of nonlinear equations
最近有人问我matlab求解方程组的问题,下面提供了fsolve函数help,但要有几点需要注意1.方程组的有解性2.方程组解是否唯一3.x0的选取,如果解不唯一,不同的x0可能会得到不同的解fsolve - Solve system of nonlinear equationsEquationSolves a problem specified byF(x)原创 2008-03-19 13:17:00 · 38917 阅读 · 3 评论 -
matlab 免费视频 Events - Webinars
http://www.mathworks.cn/company/events/archived_webinars.html?s_cid=HP_E_RW Events - Recorded WebinarsLearn more about MathWorks products through these one-hour recorded online seminars. To view a原创 2008-03-13 19:07:00 · 1451 阅读 · 0 评论 -
求解多变量box约束的最优化的matlab函数 fminsearch--ound constrained optimization using fminsearch
Download Now:原创 2008-03-02 22:42:00 · 3374 阅读 · 0 评论 -
UCLA Online Seminars and Classes 各种统计软件在线免费教程视频
这些都是免费的教程视频,如果你想进一步学习可以在人大经济论坛提供相关信息。(ariszheng) Online Seminars and ClassesWe have over 45 online seminars/classes and an entire 10 week course on Latent Variable Analysis that原创 2008-03-02 22:24:00 · 2807 阅读 · 0 评论 -
Matlab (Most Recent Files) 用户开发的程序
Most Recent Files原创 2008-03-02 22:33:00 · 1528 阅读 · 0 评论 -
MATLAB Central -File Exchange - Financial Modeling and Analysis
459 Monte Carlo simulations using MATLABDemonstrations of Monte Carlo simulations in MATLABAuthor: Vincent Leclercq Category: Financial Modeling and Anal原创 2008-02-22 22:57:00 · 4983 阅读 · 0 评论 -
matlab portfolio anaylsis--frontcon 示例
matlab程序:ExpReturn=[2.0666,3.1583,3.2333,3.3666,3.7583];ExpCovariance=[0.0014673888 0.0002836111 0.0005644444 0.0001883055 0.000468777777;0.0002836111 0.0007939097 -0.000012277 0.0006392777 0.000527原创 2007-11-17 10:05:00 · 5258 阅读 · 0 评论