资源简介
matlab开发-随机微分方程解算。用于求LSDE前两个矩的函数
代码片段和文件信息
% This function finds out the first two moments
% of a linear Stochastic Differential Equation (LSDE)
% LSDE : dy(t) = ay(t)+ b*sigma*dW(t) where W(t) is Wiener Process
% Also dW(t)=n(t)dt where n(t) is Gaussian White noise
% Inputs : a b sigma( magnitude of sqrt of PSD) and
% c ( =y(0) initial conditions)
% t (Time Vector)
% Output :m(t)( First Moment - Mean)
% M(t) (Second Moment)
% Note the solution statistics shown below have been derived using Ito‘s
% Calculus
% Author: abhiruplahiri@yahoo.com
function [mM] = LSDE(absigmact)
m=c*exp(a*t);
q=b^2*sigma^2/(2*a)
p=c^2+q;;
M=-q + p*exp(2*a*t); % derived using Ito‘s Formula
%plot(tmtM)
%grid
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 767 2018-07-11 20:20 LSDE.m
相关资源
- matlab开发-多目标优化差分进化算法
- matlab开发-波长调制光谱的二次谐波模
- matlab开发-仿制药生物生理学基础药动
- matlab开发-使用svmrfe选择功能
- matlab开发-KDTreeNearestNeighborandRangeSear
- matlab开发-stlread
- matlab开发-三维图像堆栈查看器
- matlab开发-动态电压恢复器故障dvr
- matlab开发-数据处理的分组方法GMDH
- matlab开发-DVR
- matlab开发-ParetoSet
- matlab开发-ShamirsSecretSharing
- matlab开发-othellom
- matlab开发-EMGONOFF
- matlab开发-级联H桥多电平转换三相
- matlab开发-带图形用户界面的步进电机
- matlab开发-MFTireGUI
- matlab开发-自适应霍夫曼编码技术字符
- matlab开发-ConnectFour
- matlab开发-floodfillscanline
- matlab开发-Paretosurfacenavigator
- matlab开发-分步序达尔文粒子群优化
- matlab开发-改进的解决方案经济调度方
- matlab开发-为Resnet50网络设计工具箱模
- matlab开发-sigmoid
- matlab开发-同步发电机的详细模型,包
- matlab开发-多层反向传播神经网络
- matlab开发-Parrotminirones的模拟支持包
- matlab开发-nnsysid
- matlab开发-使用gnewton-raphson方法查找任
评论
共有 条评论