How to make operator for random matrix(matlab command is randn) ? please help me

3 ビュー (過去 30 日間)
SUMIT
SUMIT 2014 年 5 月 4 日
コメント済み: Star Strider 2014 年 5 月 4 日
How to make operator for random matrix(matlab command is randn) ? please help me

採用された回答

Star Strider
Star Strider 2014 年 5 月 4 日
編集済み: Star Strider 2014 年 5 月 4 日
If you want to create normally-distributed random variables with a standard deviation of s and a mean of m with randn, this will work:
nrmrnd = @(m,s) m + s*randn;
or if you want a row r by column c matrix of them:
nrmrnd = @(m,s,r,c) m + s*randn(r,c);
  4 件のコメント
SUMIT
SUMIT 2014 年 5 月 4 日
sir,this is not an operator. In your first comment you give the operator.I need that type of operator. Please help....
Star Strider
Star Strider 2014 年 5 月 4 日
This function should work:
xrndn = @(x) randn(length(x))*x(:);
Call it as:
y = xrndn(x);
for any vector x.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by