shuffle label

randomly relabel a label matrix
ダウンロード: 875
更新 2009/9/16

ライセンスの表示

shufflelabel randomly changes the order of label values in a label matrix. Zeros and nans are ignored. The label matrix can be every numerical data type, char or a cell array of strings.


Example

L = kron([1 2 3;3 2 3],[1 1; 2 2])


L =

1 1 2 2 3 3
2 2 4 4 6 6
3 3 2 2 3 3
6 6 4 4 6 6

Ls = shufflelabel(L)

Ls =

3 3 6 6 1 1
6 6 2 2 4 4
1 1 6 6 1 1
4 4 2 2 4 4

引用

Wolfgang Schwanghart (2024). shuffle label (https://www.mathworks.com/matlabcentral/fileexchange/25310-shuffle-label), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2009a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

fixed helpblock, added a reset option

1.0.0.0