irandn.m
来自「fading 在无线中的应用」· M 代码 · 共 19 行
M
19 行
function res = irandn(varargin)% DESCRIPTION res = irandn(r,c,...) % Complex random normal distributed numbers.% In the real as well as in the imaginary part.% abs(irandn(r,c,...)) is then rayleigh distributed.% INPUT% size parameters as for i.e. zeros% OUTPUT% res -- A matrix of size according to input with complex% elements. Both the real and the imaginary part % distributed N(0,1).% TRY plot(irandn(100),'.')% SEE ALSO irand% by Magnus Almgren 970611res = randn(varargin{:}) + i*randn(varargin{:});
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?