Multi_gp.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function [x] = multi_gp(m,C)
  2. %  [x]=multi_gp(m,C)
  3. % MULTI_GP  generates a multivariate Gaussian random
  4. %    process with mean vector m (column vector) and covariance matrix C.
  5. N=length(m);
  6. for i=1:N,           
  7.   y(i)=gngauss;      
  8. end;
  9. y=y.';               
  10. x=sqrtm(C)*y+m;