lzjtu 发表于 2008-4-3 09:10

求助高人:维纳过程如何用matlab模拟

在线等!谢谢

huangxu14 发表于 2008-4-6 09:55

我也期待这个答案。。。。

yejet 发表于 2008-4-8 10:46

主程序:
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

lzjtu 发表于 2008-4-9 19:55

回复 3楼 的帖子

非常感谢您的帮助,谢谢!

xw263 发表于 2010-2-7 14:13

这是维纳过程吗?

这好像只是一个服从正态分布的白噪声过程吧。
页: [1]
查看完整版本: 求助高人:维纳过程如何用matlab模拟