computational time nested if commands
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Andrei Bobrov
2014-9-9
编辑:Andrei Bobrov
2014-9-10
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 个评论
Andrei Bobrov
2014-9-10
编辑:Andrei Bobrov
2014-9-10
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Vibration Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!