필터 지우기
필터 지우기

What exactly do these codes do dataTrain = textdata(t​raining(cv​p),:); / dataTest = textdata(test(cvp),:); ?

조회 수: 2 (최근 30일)
Hind Aljallaf
Hind Aljallaf 2023년 3월 28일
답변: Meet 2023년 4월 4일
What exactly do these codes do
dataTrain = textdata(training(cvp),:);
dataTest = textdata(test(cvp),:);

답변 (1개)

Meet
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.

카테고리

Help CenterFile Exchange에서 Model Building and Assessment에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by