creating matrix of 1 nd -1
Mostra commenti meno recenti
how can i generate random matrix of 1 and -1 ...
thanks in advance
2 Commenti
Thomas
il 21 Mar 2012
Do you want the elements of the matrix to be only 1 and -1 or between 1 and -1
umar siyab
il 21 Mar 2012
Risposte (2)
Jan
il 21 Mar 2012
1 and -1:
x = 1 - (rand(3,5) > 0.5) *2;
From -1 to 1:
x = 1 - rand(3,5) *2;
1 Commento
umar siyab
il 21 Mar 2012
David Young
il 21 Mar 2012
Assuming that you want values of 1 and -1 only, you can do
2*randi(2, m, n) - 3
1 Commento
umar siyab
il 21 Mar 2012
Categorie
Scopri di più su Random Number Generation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!