求助高人:维纳过程如何用matlab模拟
在线等!谢谢 我也期待这个答案。。。。 主程序:clear;
for i=1:4%同时模拟四次,可以对比看一下
=Stest();
subplot(2,2,i),plot(detax,detay) ;
end
函数:
%模拟随机过程问题中的布朗运动
function =stimulate()
clear;
count=100;%模拟次数
for i=1:count
detay(i) = normrnd(0,1) ;%每次的变化量
detax(i) = i ; %时间坐标
end
http://hi.baidu.com/asxinyu/blog/item/298a5df49ba843ec7609d756.html
回复 3楼 的帖子
非常感谢您的帮助,谢谢!这是维纳过程吗?
这好像只是一个服从正态分布的白噪声过程吧。
页:
[1]