Load data into the "System Identification Toolbox"
显示 更早的评论
Hello,
I am struggeling a little bit with loading some data into the system identification toolbox.
The data is quite simple, time deopendant temperature values for three sensor points.

The excel file is in this folder:

I tried to load the data amnd save it to .mat file
clc, close all, clear all
Tdata = xlsread('TempData.xlsx');
save TempData.mat Tdata;
load TempData;systemIdentification;
P = ['P:\Desktop\Black Box Modell Matlab']; % define the path here
F = 'TempData.mat'; % define the name here, use SPRINTF if required
datalcool = load(fullfile(P,F));
But it's still not working

I can't get the dat in the toolbax.
I don't have a clue what is wrong here.
With best regards
SB
1 个评论
Walter Roberson
2025-2-6
Note by the way that there is no point in doing the save followed by the load -- the data is already available in the Tdata variable.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Preprocess Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
