How to vectorize this loop? Subsequental subtraction of columns within a matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Senaasa
el 3 de Jun. de 2014
Comentada: Andrei Bobrov
el 3 de Jun. de 2014
I'm trying to vectorize the following loop:
a=rand(1000,100);
j=1;
k=2;
tic
for i=1:50;
b(:,i)=a(:,j)-a(:,k);
j=j+1;
k=k+1'
end
toc
Is there any easier way to subsequently subtract an entire column from the previous column within a matrix?
Thanks, Charles
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!