what does it means Check for incorrect argument data type or missing argument in call to function 'realdata'.?

15 views (last 30 days)
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)

Answers (1)

Seungbum Koo
Seungbum Koo on 25 Jun 2021
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.

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!