How to find particular number in the data vector?

조회 수: 10 (최근 30일)
vimal kumar chawda
vimal kumar chawda 2021년 6월 24일
답변: dpb 2021년 6월 24일
clc
clear all
close all
data = randi(100000)
% How can I find particular number like xx and at what positon in my data file?
  댓글 수: 1
Scott MacKenzie
Scott MacKenzie 2021년 6월 24일
What do you mean by "data file"? You have one variable, data, and it contains one integer in the range 1 to 1000000.

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

답변 (1개)

dpb
dpb 2021년 6월 24일
You've answered the question (sorta') with your tag referencing find -- but...(there's almost always a "but", isn't there!!?? ) :)
With integers, it's trivial --
[ifound,idx]=find(data,MyWantedInteger);
will return the value MyWantedInteger and the location (first if more than one) of that value in the data array. IFF, of course, the value of the integer you ask for is included in the random sample of values in the particular instantiation of the randomized variates. The above code just generates a single value in the range between 1 and 100000 so the chances of picking that particular number aren't good in the above.
You don't say, so perhaps the idea is the above is a randomized value to find in some other array -- same idea, just different place to look --
[ifound,idx]=find(TheOtherDataArray,data);
Same caveats are true, the particular value would have to exist in that other data file or the result will return an empty variable for ifound, not the valud data nor a location.
That's all simple-enough with integers, with floating point numbers, unless you can type in every digit in the number you're looking for to reproduce machine precision of the double array in which the data array is stored (and including rounding to match how the rand() function rounds, the chances are essentially nil you'll match anything -- in that case you'll want to look into ismembertol to find values within some range of an input value.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by