Signal Labeler is not loading the data
Show older comments
Hello,
I am using MATLAB 2020a, I have a matrix of signals that I want to label using signalLabeler. The matrix is in my workspace but signalLabeler is not recognizing it and thus it is not imported.
Any help is appreicated.
8 Comments
Mehmed Saad
on 12 Apr 2020
what is the dimension of you matrix
Khaleel Alhalaseh
on 12 Apr 2020
Khaleel Alhalaseh
on 12 Apr 2020
Mehmed Saad
on 12 Apr 2020
Edited: Mehmed Saad
on 12 Apr 2020
create a random varaible of same size and try labeling it.
z = randn(2631,75);
Type of data? double,uint ?
Khaleel Alhalaseh
on 12 Apr 2020
Khaleel Alhalaseh
on 12 Apr 2020
Mehmed Saad
on 12 Apr 2020
then your data might have some problem
Khaleel Alhalaseh
on 12 Apr 2020
Answers (1)
Mehmed Saad
on 12 Apr 2020
Edited: Mehmed Saad
on 12 Apr 2020
Now Try this
z = randn(2631,75)+1j*randn(2631,75);
You cant see z in signal analyzer because it is complex
I beleive your data is complex double
zr = real(z);
zi = imag(z);
Now you can see zr and zi in signal Analyzer
2 Comments
Khaleel Alhalaseh
on 12 Apr 2020
Mehmed Saad
on 13 Apr 2020
can you share your data in mat file
Categories
Find more on AI for Signals in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!