Index exceeds array bounds.

1 回表示 (過去 30 日間)
hugo monstans thurler dos santos
hugo monstans thurler dos santos 2021 年 8 月 8 日
I try run this code for keep use remaining useful life, but it doesn't work.
BOP = readtable('auxiliary_equipment.csv');
head(BOP)
%%Divida os dados do subsistema auxiliary equipment de treinamento e
% um conjunto de dados de validação para avaliação posterior de desempenho.
rng('default')
numEnsemble = size(BOP);
numFold = 2;
cv = cvpartition(numEnsemble, 'KFold', numFold);
trainData = BOP(training(cv, 1),:);
validationData = BOP(test(cv, 1),:);
%
varNames = string(BOP.Properties.VariableNames);
timeVariable = varNames{4:6};
conditionVariables = varNames(7:12);
dataVariables = varNames(1);
%
nsample = 10;
figure
helperPlotEnsemble(trainData, timeVariable, ...
[conditionVariables(1:2) dataVariables(1:2)], nsample)
Index exceeds array bounds.
  2 件のコメント
Image Analyst
Image Analyst 2021 年 8 月 8 日
I'm not even going to try until you attach 'auxiliary_equipment.csv'.
hugo monstans thurler dos santos
hugo monstans thurler dos santos 2021 年 8 月 8 日
How can i attach? I don't get it.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeCorrelation and Convolution についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by