How to perform eye diagram measuremet from a .mat file that contains "Enumerated" data type from a Simulink model
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Sarvani Panguluri
2020-8-14
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!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Verification, Validation, and Test 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!