computational time nested if commands
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Stelina
el 9 de Sept. de 2014
Editada: Andrei Bobrov
el 10 de Sept. de 2014
Hi there,
I am attaching an mfile with nested ifs - it is really simple and I include the commenting, so it is easily read.
However, it takes for ever to execute. The weird thing is that if I exclude only one condition (one nested if - the >1.11 Z see code) , it executes really fast. I really cannot spot weather there is a mistake in the code - it doens't return anth as an error, just simply never stops, so I was just hoping for you MATLAB guru's.
Thanx a lot in advance! Stella
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 9 de Sept. de 2014
Editada: Andrei Bobrov
el 10 de Sept. de 2014
us1 = abs(Us(:,1:48));
x = us1(:,[1:30,36:48]);
z = us1(:,[31,32,34,35]);
p = us1(:,33);
l1 = all([bsxfun(@gt,p,2*x),2), bsxfun(@gt,p,1.11*z)],2);
Usvalid = Us(l1,:);
Usnonvalid = Us(~l1,:);
2 comentarios
Andrei Bobrov
el 10 de Sept. de 2014
Editada: Andrei Bobrov
el 10 de Sept. de 2014
variant with loop for..end and condition if..else..end:
us1 = abs(Us(:,1:48));
x = us1(:,[1:30,36:48]);
z = us1(:,[31,32,35,36]);
peak = us1(:,33);
k = 0;
m = 0;
for ii = 1:size(Us,1)
if all(peak(ii) > 2*x(ii,:)) && all(peak(ii) > 1.11*z(ii,:))
k = k + 1;
Usvalid(k,:) = Us(ii,:);
else
m = m + 1;
Usnonvalid(m,:) = Us(ii,:);
end
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Vibration Analysis 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!