📄 r8_normal.m
字号:
function [ x, seed ] = r8_normal ( a, b, seed )%% R8_NORMAL returns a scaled pseudonormal R8.%% Modified:%% 17 July 2006%% Author:%% John Burkardt%% Parameters:%% Input, real A, the mean of the normal PDF.%% Input, real B, the standard deviation of the normal PDF.%% Input, integer SEED, a seed for the random number generator.%% Output, real X, a sample of the standard normal PDF.%% Output, integer SEED, an updated seed for the random number generator.% x = a + b * r8_normal_01 ( seed );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -