📄 whitenoise.sci
字号:
function y = WhiteNoise(x)
// WhiteNoise -- Version-independent white noise generator
// Usage
// y = WhiteNoise(x)
// Inputs
// x nonempty matrix
// Outputs
// y matrix shaped like x, filled with
// standard normal random numbers.
//
// Description
// The method used avoids warning messages under both
//
// Copyright Aldo I Maalouf
temp=size(x);
y = rand(temp(1),temp(2),'normal');
endfunction
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -