Signal Labeler is not loading the data

조회 수: 3 (최근 30일)
Khaleel Alhalaseh
Khaleel Alhalaseh 2020년 4월 12일
댓글: Mehmed Saad 2020년 4월 13일
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
Mehmed Saad
Mehmed Saad 2020년 4월 12일
then your data might have some problem
Khaleel Alhalaseh
Khaleel Alhalaseh 2020년 4월 12일
I checked my data it has InF and NaN. Gotta find a way to handle that. any suggestions?

댓글을 달려면 로그인하십시오.

답변 (1개)

Mehmed Saad
Mehmed Saad 2020년 4월 12일
편집: Mehmed Saad 2020년 4월 12일
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
Khaleel Alhalaseh
Khaleel Alhalaseh 2020년 4월 12일
No. It contained NaN and InF but I fixed them, still signalLabeler does not recognize their existence in the workspace.
Mehmed Saad
Mehmed Saad 2020년 4월 13일
can you share your data in mat file

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by