Signal Labeler is not loading the data
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Mehmed Saad
el 12 de Abr. de 2020
Editada: Mehmed Saad
el 12 de Abr. de 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 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!