subarray

버전 1.1.0.0 (1.46 KB) 작성자: Peter Mao
Extracts a subarray from an array. Useful for function outputs.
다운로드 수: 834
업데이트 2011/8/1

라이선스 보기

extracting a subarray from an array is simple:

a = 1:10;
a(4:8) %returns elements 4-8.

but sometimes, I have a function that returns an array, but I only want a subset of that array:

a = foo(x,y,z);
b = a(2,9:end);

Here 'a' is a temporary variable, polluting my workspace. Hence subarray:

b = subarray(foo(x,y,z),2,'9:end');

SUBARRAY should handle all the normal indexing cases (output of FIND, ranges, unspecified dimensions) just like the first example. The only exception is the 'end' keyword, where we have to pass in a string and EVAL it.

I tip my hat to Garret Euler of SUBMAT and SUBMAT_NOEVAL.

인용 양식

Peter Mao (2026). subarray (https://kr.mathworks.com/matlabcentral/fileexchange/24457-subarray), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2009a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Matrices and Arrays에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.1.0.0

prev version wasn't handling 1xn matrices in the expected way (it wasn't skipping the singeton dimensions). usage in functions seems to be well behaved now, provided one uses quotes around :'s and "end"'s

1.0.0.0