Random no matrix for 1 & -1
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Offroad Jeep
am 4 Sep. 2015
Beantwortet: James Tursa
am 4 Sep. 2015
I want to generate a random matrix for which if element is < 0.5 it is equal to -1 and if >=0.5 its equal to 1 . kindly correct the code.......... I have attached....... Thanks
clc
clear all
format compact
nrows= 5
fm_array = rand(nrows)
if fm_array >= 0.5
fm_array == 1
else
fm_array == -1
fm_array
end
0 Kommentare
Akzeptierte Antwort
Guillaume
am 4 Sep. 2015
nrowcol = 5;
fm_array = rand(nrowcol);
fm_array(fm_array < 0.5) = -1;
fm_array(fm_array >= 0.5) = 1;
Weitere Antworten (1)
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!