Printing some values in a vector

3 ビュー (過去 30 日間)
H
H 2019 年 9 月 13 日
コメント済み: Rena Berman 2019 年 12 月 12 日
This is the data:
X = [0.23, 0.88, 0.21, 0.92, 0.49, 0.62, 0.77, 0.52, 0.30, 0.19]
function split(X,K)
% we assume N is divisible by K
N = length(X);
for k=1:K
tstart = 1+(k-1)*N/K;
tend = k*N/K;
test = tstart:tend
train = [1:tstart-1 tend+1:N]
pause;
end
train and test: these are indices. What if I want to print the values that are in train and test? How do I do that?
  2 件のコメント
Stephen23
Stephen23 2019 年 11 月 27 日
Original question from Google Cache:
"Printing some values in a vector"
This is the data:
X = [0.23, 0.88, 0.21, 0.92, 0.49, 0.62, 0.77, 0.52, 0.30, 0.19]
function split(X,K)
% we assume N is divisible by K
N = length(X);
for k=1:K
tstart = 1+(k-1)*N/K;
tend = k*N/K;
test = tstart:tend
train = [1:tstart-1 tend+1:N]
pause;
end
train and test: these are indices. What if I want to print the values that are in train and test? How do I do that?
Rena Berman
Rena Berman 2019 年 12 月 12 日
(Answers Dev) Restored edit

サインインしてコメントする。

回答 (1 件)

madhan ravi
madhan ravi 2019 年 9 月 13 日
編集済み: madhan ravi 2019 年 9 月 13 日

カテゴリ

Help Center および File ExchangeTesting Frameworks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by