Matrix operations
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have an n by i matrix call it B. I want to apply two different operations to B. I want to perform the first operation on elements of B<0 and then perform the other operation to the rest of B. The operations themselves are n by n matrices. How do i do it please?
0 comentarios
Respuestas (1)
Titus Edelhofer
el 25 de Jul. de 2011
Hi,
use logical indexing:
idx = B<0;
% operate on these indices:
B(idx) = ...;
% and now on those >= 0:
B(~idx) = ...;
Titus
0 comentarios
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!