Elimination of rows in array

4 次查看(过去 30 天)
Hello. Didn't find a relevant answer.
Suppose we have an array of such form:
A=[a1 b1 c1 d1; a2 b2 c2 d2; etc], i.e. rows of sets of parameters. How to delete from the array the rows with the following conditions:
if 1)a1+b1<c1 then delete that row
and 2) if a1+b1>d1 then delete that row
end
Thank you!

采纳的回答

Thorsten
Thorsten 2016-10-7
A(A(:,1)+A(:,2) < A(:,3) | A(:,1)+A(:,2) > A(:,4), :) = [];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by