outselect.m
バージョン 1.0.0.0 (1.51 KB) 作成者:
Toby Driscoll
Select or reorder any function's output arguments.
Occasionally you need only the kth output argument of a MATLAB function, where k>1. This function OUTSELECT provides this facility as a 'wrapper' around any other function. It can evaluate and return arguments immediately, or create a new callable function.
For example:
>> str = 'deacb'; [s,idx] = sort(str)
s =
abcde
idx =
3 5 4 1 2
>> [idx,s] = outselect([2 1],@sort,str)
idx =
3 5 4 1 2
s =
abcde
>> argmin = outselect(2,@min);
>> argmin(str)
ans =
3
引用
Toby Driscoll (2025). outselect.m (https://www.mathworks.com/matlabcentral/fileexchange/7913-outselect-m), MATLAB Central File Exchange. に取得済み.
MATLAB リリースの互換性
作成:
R14
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linuxカテゴリ
Help Center および MATLAB Answers で Characters and Strings についてさらに検索
タグ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!バージョン | 公開済み | リリース ノート | |
---|---|---|---|
1.0.0.0 |