What exactly do these codes do dataTrain = textdata(training(cvp),:); / dataTest = textdata(test(cvp),:); ?
1 回表示 (過去 30 日間)
古いコメントを表示
What exactly do these codes do
dataTrain = textdata(training(cvp),:);
dataTest = textdata(test(cvp),:);
回答 (1 件)
Meet
2023 年 4 月 4 日
The cvpartition function will create a random partion indices for train and test data and assign a cvpartition object to cvp. The training and test functions are the object functions for cvpartition object.
In line dataTrain = textdata(training(cvp),:); : The training function is used to get the indices of training data. Using these indices, the training data is extracted from textdata and is assigned to dataTrain.
Similarly, in line dataTest = textdata(test(cvp),:); : The test function is used to get the indices of testing data. Using these indices, the testing data is extracted from textdata and is assigned to dataTest.
Please refer Partition data for cross-validation - MATLAB (mathworks.com), Training indices for cross-validation - MATLAB training (mathworks.com) and Test indices for cross-validation - MATLAB test (mathworks.com) for more details on cvpartition, training and test functions respectively.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Gaussian Process Regression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!