replace the elements of a matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
pavlos
le 13 Fév 2014
Commenté : Dishant Arora
le 13 Fév 2014
Hello,
Consider a 100x1 matrix, called A, that contains random values of "0" and "1".
The number of "1" is 25 and the rest 75 are "0".
Also, consider a matrix 25x1, called B, that contains random values.
How can I replace the "1" of matrix A with the values of matrix B?
The "0" of A would not be influenced.
Thank you.
Best,
Pavlos
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 13 Fév 2014
A(A==1)=B
2 commentaires
Azzi Abdelmalek
le 13 Fév 2014
This is not true. Look at this example
%exmple
A=zeros(100,1);
A(randperm(100,25))=1
B=rand(25,1)
%----------------------
A(A==1)=B
Plus de réponses (1)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!