フィルターのクリア

How do I create a Matlab 5x5 matrix of numbers 1-100?

6 ビュー (過去 30 日間)
Julen Vicente Pipaon
Julen Vicente Pipaon 2021 年 2 月 15 日
編集済み: Adam Danz 2021 年 2 月 16 日
I have to make an script that creates a 5x5 matrix of 1-100 numbers in increasing order.

採用された回答

Adam Danz
Adam Danz 2021 年 2 月 15 日
編集済み: Adam Danz 2021 年 2 月 16 日
Use X=randi(100,1,5*5) to get random integers <=100 or x=rand(1,5*5)*100 if you want floating decimals.
Then use sort() to achieve increasing order.
Then reshape the vector back into a 5x5 matrix using reshape().

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by