📄 randn.m
字号:
function R=randn(M,N)
% RANDN Normally distributed random numbers and matrices from
% a normal distribution with mean 0.0 and variance 1.0.
% usage:
% R = randn(M,N)
%
% R: matrix of random values
% M: number of rows of R
% N: number of columns of R
%
% See: rand
rand('normal');
R = rand(M,N);
rand('uniform');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -