Signal Labeler is not loading the data
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Mehmed Saad
le 12 Avr 2020
Modifié(e) : Mehmed Saad
le 12 Avr 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 commentaires
Voir également
Catégories
En savoir plus sur AI for Signals dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!