i have loaded a time-series data (variable of 10000 rows and one column), and for that to estimate a transfer function i am getting the index error, please do help me
조회 수: 1 (최근 30일)
이전 댓글 표시
sys=tfest(data1,1,0)
Error using tfest (line 113)
Index exceeds the number of array elements (0).
댓글 수: 5
Walter Roberson
2023년 1월 12일
Please run this segment of debugging code and tell us the result.
OutputData = data1.OutputData;
if isempty(OutputData)
fprintf('Stored OutputData is empty\n');
output_size = 0;
elseif iscell(OutputData)
fprintf('OutputData is cell\n');
output_size = size(OutputData{1});
else
fprintf('OutputData is numeric\n');
output_size = size(OutputData);
end
disp(output_size)
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Transfer Function Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!