Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 matlab 代码,我需要一个 iid 高斯正态矩阵,我怎样才能产生这个?请。在这个网站上我找到了矩阵(rnorm(N*M,mean=0,sd=1), N, M) 但不起作用并解释了。
p
要生成 M 乘以 N 的高斯独立同分布随机变量矩阵,具有均值 mu 和标准差 sigma,您只需要
result = mu + sigma*randn(M,N);