Find

1 回表示 (過去 30 日間)
AP
AP 2011 年 7 月 6 日
I have a matrix 10000×2, named A. The first column is x and the second column is y. I am trying to find the number of element where the following condition holds:
y<x+b && y>x-b
where b is a constant. I used FIND command to achieve this. I want to make sure it is correct. Thank you very much.
numel(find((A(:,2)<A(:,1)+b) & (A(:,2)>A(:,1)-b)))
I would appreciate quick responses :))))))

回答 (2 件)

Matt Fig
Matt Fig 2011 年 7 月 6 日
Use & instead of && when dealing with array comparisons.
Also, this is faster:
sum((A(:,2)<A(:,1)+b) && (A(:,2)>A(:,1)-b))
  1 件のコメント
AP
AP 2011 年 7 月 6 日
that was soooo quick thanks.

サインインしてコメントする。


Paulo Silva
Paulo Silva 2011 年 7 月 6 日
a=randi([1 10],10,2); %make up some data
x=a(:,1);
y=a(:,2);
b=5;
sum(y<x+b & y>x-b)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by