make_a_draw.m
来自「模式识别matlab工具箱,包括SVM,ICA,PCA,NN等等模式识别算法,很」· M 代码 · 共 8 行
M
8 行
function [test_indices, train_indices] = make_a_draw(how_many, out_of_how_many)
%Choose a number of indices out of the maximum number allowed.
indices = randperm(out_of_how_many);
train_indices = sort(indices(1:how_many));
test_indices = sort(indices(how_many+1:out_of_how_many));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?