what does it means Check for incorrect argument data type or missing argument in call to function 'realdata'.?
2 次查看(过去 30 天)
显示 更早的评论
clc
clear all
close all
format long g
load('DatenAufgabeFilter.mat')
ts = timeseries(Messdaten)
tsc = tscollection(Messdaten)
% TT = ts2timetable(Messdaten)
zf = fft(Messdaten);
tdrv = isreal(Messdaten)
ral_Data = realdata(Messdaten)
0 个评论
回答(1 个)
Seungbum Koo
2021-6-25
It means that the data type of Messdaten is not what function realdata expects.
If you do the following, you'll see the same error.
>> realdata('some nonsense data type')
Check for incorrect argument data type or missing argument in call to function 'realdata'.
Since realdata tries to see if the input argument is real type or not, I guess the function is implemented on some assumption about the input argument. And 'some nonsense data type' is a character vector which is definitely not one of the kind.
Please refer to Determine whether iddata is based on real-valued signals - MATLAB realdata (mathworks.com) for the details. In the document, one of the examples passes in zf to realdata. I would first try to make Messdaten to look like zf of the document's example.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!