Generating a random matrix which has zero entries as well

3 ビュー (過去 30 日間)
Mojtaba Mohareri
Mojtaba Mohareri 2021 年 6 月 5 日
コメント済み: Mojtaba Mohareri 2021 年 6 月 5 日
When I generate a random matrix (for example, with the following code)
bounds = [-15,10];
A = rand(m,m) * range(bounds) + bounds(1)
there is no zero entry in the matrix. Could you please tell me how can I create a random matrix which has zero entries as well?
  7 件のコメント
the cyclist
the cyclist 2021 年 6 月 5 日
There are several things you could do, but it depends on what properties you need your random distribution to have.
For example, you could generate the m*m random numbers as you originally did, but then generate a random number of zeros from 0:m*m, and fill them into random location in your array.
So, first, think carefully about what specific properties you need your random distribution to have, then we may be able to help you generate that distribution. It is not enough to say "numbers between -15 and 15, where some are zeros". You need to be very specific.
Mojtaba Mohareri
Mojtaba Mohareri 2021 年 6 月 5 日
You are right. I sure will. Thank you very much for your exact eplanation.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by