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://ww2.mathworks.cn/matlabcentral/fileexchange/24457-subarray), MATLAB Central File Exchange. 检索时间: .
MATLAB 版本兼容性
创建方式
R2009a
兼容任何版本
平台兼容性
Windows macOS Linux类别
在 Help Center 和 MATLAB Answers 中查找有关 Matrices and Arrays 的更多信息
