⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irandn.m

📁 基于OFDM的无线宽带系统仿真It contains mainly two parts, i.e. link-level simulator and system-level simulator.
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -