Do we have any Fucntion which can generate +1 and -1 randomly????
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
A P S
am 26 Okt. 2014
Bearbeitet: Mohammad Abouali
am 26 Okt. 2014
I am using the following thing to generate it...
a=rand(1,10);
b=round(a);
b( b==0 )=-1;
So is there any other best way to genrate +1 and -1 randomly
0 Kommentare
Akzeptierte Antwort
Mohammad Abouali
am 26 Okt. 2014
Bearbeitet: Mohammad Abouali
am 26 Okt. 2014
I don't think there is any function doing that.
Here is another approach:
sign(rand(1,10)-0.5)
or
(-1).^(round(rand(1,10)))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Coder 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!