Find the "I J K" indices of any element number "e" in the 2D or 3D matrix

버전 1.2.0.0 (1.84 KB) 작성자: sunil anandatheertha
Many a times it may be required to identify the indices, 'i','j' and 'k' values of an element number
다운로드 수: 293
업데이트 날짜: 2012/2/14

라이선스 보기

Many a times it may be required to identify the indices, 'i'(row),'j'(column) and 'k'(plane) values of an element number 'e'

% SAMPLE USAGE 1
% [row,column,plane]=findijk(79,[10 10 10])
% row =
% 9
% column =
% 8
% plane =
% 1
% SAMPLE USAGE 2
% [row,column,plane]=findijk(79,[10 10])
% row =
% 9
% column =
% 8
% plane =
% 1
% SAMPLE USAGE 3
% [row,column,plane]=findijk(301,[10 10 10])
% row =
% 1
% column =
% 1
% plane =
% 4

[NOTE: Its just another method and users who are inquisitive enough to know a different approach (as with the inbuilt function ind2sub) to do the same job, would find this interesting.]

인용 양식

sunil anandatheertha (2025). Find the "I J K" indices of any element number "e" in the 2D or 3D matrix (https://www.mathworks.com/matlabcentral/fileexchange/34824-find-the-i-j-k-indices-of-any-element-number-e-in-the-2d-or-3d-matrix), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2010b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

In accordance with the comment on this file, i have included adequate changes in the code as regards to the code formatting and layout. Also included a NOTE in the code description.

1.1.0.0

included a small change in the title and included an errata in the description.

1.0.0.0