how to generate a matrix whose elements are two dimension t random numbers?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
wen
am 14 Okt. 2014
Beantwortet: Mohammad Abouali
am 15 Okt. 2014
Hi guys, I 'd like to generate a 100*100 matrix whose elements are points that two dimension t random numbers, like [[1.3157 0.7010],[0.1591 -1.3840]...](100*100)
Thx a lot
0 Kommentare
Akzeptierte Antwort
Mohammad Abouali
am 15 Okt. 2014
You need to either generate rand(100,100,2) or you need to make a cell array of 100x100 where each element is of form [x y]
Or you can make structure array which has two fields of x y
Regular matrix if 100x100 only stores one number per entry
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Random Number Generation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!