Decimal indexing for arrays in MATLAB
이전 댓글 표시
If I have a array of 11 elements, within the range 1 and 2, with a difference of 0.1, i.e, m = 1:0.1:2; to access the value of '1.4000' from the array 'm', the normal procedure is to write 'm(5)'. (index must be an integer)
Can I somehow index 'm(1.4)' and get the value 1.4000? (have a decimal value in the index)
댓글 수: 3
What would be the point of getting the value in an array when, in order to get said value, you already know what it is?
This isn't real code, but hypothetically:
m = rand(100);
myindex = 0.504074886735144;
myvalue = m(myindex); % the result is either myindex or an error
In concept, this process accomplishes nothing except testing whether the value exists in the array.
On the other hand, maybe it's the location of the value that's important?
Bjorn Gustavsson
2023년 1월 10일
Sometimes I see 1-D interpolation that way - this require the array to have some simple interpretation of samples of a sufficiently smooth function that the samples in the array can be used to build useful estimates for your "fractional" indices. But indexing is to elements you have.
Yuvarajendra Anjaneya Reddy
2023년 1월 10일
편집: Yuvarajendra Anjaneya Reddy
2023년 1월 10일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!