You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to solve the matrix SDE problem $dA = AD_1 dW_1+D_2AdW_2$,
where $A$, $D_1$ and $D_2$ are $n\times n$ matrices.
I'm wondering what noise prototype I should use? I tried noise_rate_prototype=zeros(n,n,2) but it doesn't work
The text was updated successfully, but these errors were encountered:
For the noise prototype you need to consider it in the vec(u) form as a linear operator, i.e. in the column-order definition of u as a vector. Not the best but it will work.
Hi,
I'm trying to solve the matrix SDE problem
$dA = AD_1 dW_1+D_2AdW_2$ ,$A$ , $D_1$ and $D_2$ are $n\times n$ matrices.
where
I'm wondering what noise prototype I should use? I tried noise_rate_prototype=zeros(n,n,2) but it doesn't work
The text was updated successfully, but these errors were encountered: