How to perform eye diagram measuremet from a .mat file that contains "Enumerated" data type from a Simulink model
4 views (last 30 days)
Show older comments
I want to do EyeDiagram measurements using comm.EyeDiagram in Matlab. I have made a Simulink model of a DLL and the output (pulse signal) has been transferred To Workspace and then saved into a .mat file format in the local directory. Then I loaded the file in matlab in a variable "src". Which is showing this " struct with fields:
out: [1×1 Simulink.SimulationOutput]"
Then I initialized the display properties of eye diagram. After that I used the command/defined system object eyeObj(src). It showed the following error:
Error using comm.EyeDiagram/setupImpl
System objects do not support 'Enumeration' type or 'Objects' as inputs. Pass a valid 'Numeric' type to the Step function.
Could anyone please guide me which link am I missing here?
Thanks in advance!
0 Comments
Answers (1)
Sarvani Panguluri
on 14 Aug 2020
Hi,
I assume you are trying to perform Eye diagram measurements using comm.EyeDiagram in MATLAB and the output of your simulink model that is saved to workspace is of the form struct.
ed=comm.EyeDiagram()
ed(x)
After creating comm.EyeDiagram object , while usage it is expected that the input signal 'x' must be either a vector or a matrix.That might be the reason for your error.Please refer to the following link for more detailed insight
Try using the signal values present in your src to obtain the eye diagram.
Hope it helps!
1 Comment
See Also
Categories
Find more on Verification, Validation, and Test in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!