Access matrix location on one matrix with the data location on another matrix
Mostrar comentarios más antiguos
I have two matrix say A & B if I have data stored in A and the data location of desired values in B how could I access Values of matrix A who are located at locations B.
Respuesta aceptada
Más respuestas (1)
madhan ravi
el 21 de Jun. de 2019
Probably you want:
idx = setdiff(1:numel(A),B);
A(idx) = 0;
2 comentarios
Rohan Mehta
el 21 de Jun. de 2019
madhan ravi
el 21 de Jun. de 2019
Editada: madhan ravi
el 21 de Jun. de 2019
Beware this method works even if A is a matrix more than 1 dimension unlike the other.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!