Finding Data in a loaded file

조회 수: 2 (최근 30일)
Rohan  Mehta
Rohan Mehta 2019년 7월 10일
댓글: Guillaume 2019년 7월 10일
I am having a data file with amplitudes mentioned in it almost 10000 samples are present and I know value of one amplitude which is present in the data and want to find location of that sample how to do that ?

채택된 답변

Ruben Costa
Ruben Costa 2019년 7월 10일
Hello,
find(NameOfMatrix==ValueThatYouknow)
This will give you the exact position of the value that you want in the matrix that you have! If you want, you can use any condition to know the position of other values!
Hope it helps!
  댓글 수: 1
Guillaume
Guillaume 2019년 7월 10일
편집: Guillaume 2019년 7월 10일
Depending on what is to be done afterward, the find may not be necessary. The logical vector returned by the comparison may be enough.
Note that == does exact comparison and may therefore not work as expected if the data stored in the matrices is not integer. See for example:
>> (0.3-0.2-0.1) == 0 %is false
ans =
logical
0
For floating point numbers, you would be better off using the method shown by KSSV (with an appropriate tolerance) or ismembertol.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2019년 7월 10일
Let A be your data and you want to seek b from it.
idx = find(abs(A-b)<10^-5)
  댓글 수: 3
KSSV
KSSV 2019년 7월 10일
It is a tolerance set, to check the equality of both numbers. This is how the floating numbers are checked.
Guillaume
Guillaume 2019년 7월 10일
10^-5 is better written as 1e-5 (1e-5 does not involve any runtime computation).
It must be pointed out that the comparison tolerance must be chosen in accordance to the magnitude of the numbers being compared. 1e-5 would be completely inapproriate if the magnitude of the numbers being compared is in the order of 1e-10.
For that reason, ismembertol would be better as it automatically calculate the appropriate tolerance for you.

댓글을 달려면 로그인하십시오.

카테고리

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