Effacer les filtres
Effacer les filtres

Generating a new matrix

1 vue (au cours des 30 derniers jours)
Offroad Jeep
Offroad Jeep le 16 Sep 2016
Modifié(e) : Andrei Bobrov le 16 Sep 2016
Let A be a matrix A = rand(4) For all values of A >=0.5, A = 1 else A = 0
now I want to generate a new matrix Alpha..... for which all values of A which are 1 they should have value 0 in Alpha matrix and for all zero values of matrix A the Alpha should have value "pi"
Let A = [1,0;0,0] Alpha should be [0,pi;pi,pi]
Thanks for helpers....... hope i made you understand what i want.... Regards

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 16 Sep 2016
Modifié(e) : Andrei Bobrov le 16 Sep 2016
A = rand(4) >= .5;
Alpha = ~A * pi;

Plus de réponses (1)

KSSV
KSSV le 16 Sep 2016
Modifié(e) : KSSV le 16 Sep 2016
A = [1,0;0,0] ;
iwant = A ;
iwant(A==1) = 0 ;
iwant(A==0) = pi ;
A = rand(4) ;
iwant = A ;
iwant(A>=0.5) = 1 ;
iwant(A<0.5) = 0 ;

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by