我是靠谱客的博主 着急钢笔,这篇文章主要介绍matlab中randint函数用法,matlab中rand randn randint函数的区别,现在分享给大家,希望可以做个参考。

matlab中rand函数是产生0到1的随机分布

matlab中randn函数是产生标准正态分布

randint是产生整数随机数,默认为0和1

%%%%%%%%%%%rand%%%%%%%%%%%%%%%%

RAND Uniformly distributed

random

numbers. 标准化分布的随机数

RAND(N) is

an N-by-N matrix with random entries, chosen from a uniform

distribution on the interval

(0.0,1.0). rand(N)为随机生成一个在【0,1】之间的n维随机矩阵。

RAND(M,N)

and RAND([M,N]) are M-by-N matrices with random

entries.随机生成一个在【0,1】之间的m,n维随机矩阵。

RAND(M,N,P,...) or RAND([M,N,P,...]) generate random arrays.

RAND with no

arguments is a scalar whose value changes each time

it is referenced. RAND(SIZE(A)) is the same size

as A.

RAND

produces pseudo-random numbers. The sequence of

numbers generated is determined by the state of

the generator. Since MATLAB resets the state at start-up, the sequence of numbers generated

will be the same unless the state is

changed. matlab的随机数算法是通过一个“种子”递推出来的,种子在程序初始的时候都一样。

S =

RAND('state') is a 35-element vector containing the current

state of the uniform generator. RAND('state',S) resets the state to S.

RAND('state',0) resets the generator to its initial state.

重新恢复初始状态,刚运行matlab时候的状态

RAND('state',J), for integer J, resets the generator to its J-th

state. 安排种子产生第j个状态

RAND('state',sum(100*clock)) resets it to a different state each

time.根据时间产生不同的随机数

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%randn%%%%%%%%%%%%%%%%%%%%%%%

(1)RANDN产生正态分布数的语法:

RANDN(N) :产生N× N的矩阵,其元素是按正态分布的数组;

RANDN(M,N) and RANDN([M,N]):产生M×N的矩阵;

RANDN(M,N,P,...) or RANDN([M,N,P...])产生随机序列;

(2)RANDN产生伪随机数的语法:

发生器的状态决定所产生数的序号。

S = RANDN('state') 是一个二元向量,包括标准发生器的状态;

RANDN('state',S):设置发生器的状态为S(即标准状态);

RANDN('state',0):设置发生器的初始状态;

RANDN('state',J):J为整数,设置发生器到J阶状态;

(3)MATlAB 4.X应用一个单独的种子来产生随机数:

RANDN('seed',0) and

RANDN('seed',J)作用与RANDN('state',0)和RANDN('state',J)一样,但使用Matlab

4.x随机数发生器。

RANDN('seed'):返回MATlAB 4.X发生器的当前种子。

最后

以上就是着急钢笔最近收集整理的关于matlab中randint函数用法,matlab中rand randn randint函数的区别的全部内容,更多相关matlab中randint函数用法,matlab中rand randn randint函数内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(78)

评论列表共有 0 条评论

立即
投稿
返回
顶部