概述
转载 matlab中文论坛
alphabet = [1 4 6]; prob = [0.1 0.4 0.5];
randsrc(100,1,[alphabet; prob])
摘自matlab help 文档 等以后有空再翻译
Syntax
out = randsrc
out = randsrc(m)
out = randsrc(m,n)
out = randsrc(m,n,alphabet)
out = randsrc(m,n,[alphabet; prob])
out = randsrc(m,n,___,seed)
out = randsrc(m,n,___,streamhandle)
Description
out = randsrc generates a random scalar that is either -1 or 1, with equal probability.
out = randsrc(m) generates an m-by-m random bipolar matrix. Each entry independently takes the value -1 or 1 with equal probability.
out = randsrc(m,n) generates an m-by-n random bipolar matrix. Each entry independently takes the value -1 or 1 with equal probability.
out = randsrc(m,n,alphabet) generates an m-by-n matrix, with each entry independently chosen from the entries in the row vector alphabet. Each entry in alphabet occurs in out with equal probability. Duplicate values in alphabet are ignored.
out = randsrc(m,n,[alphabet; prob]) generates an m-by-n matrix, with each entry independently chosen from the entries in the row vector alphabet. Duplicate values in alphabet are ignored. The row vector prob lists corresponding probabilities, so that the symbol alphabet(k) occurs with probability prob(k), where k is any integer between one and the number of columns of alphabet. The elements of prob must add up to 1.
out = randsrc(m,n,___,seed) accepts input combinations from prior syntaxes and a seed value, for initializing the uniform random number generator, rand.
out = randsrc(m,n,___,streamhandle) accepts input combinations from prior syntaxes and a random stream handle to generate uniform random noise samples by using rand. Providing a random stream handle or using the reset function on the default random stream object enables you to generate repeatable noise samples. If you want to generate repeatable noise samples, then either reset the random stream input before calling randsrc or use the same seed input. For more information, see RandStream.
最后
以上就是魔幻羽毛为你收集整理的Matlab中如何按照一定概率产生离散随机数?的全部内容,希望文章能够帮你解决Matlab中如何按照一定概率产生离散随机数?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复