-
Notifications
You must be signed in to change notification settings - Fork 80
Open
Description
Hello,
while I was looking for a good way to exchange IQ data, I came across SigMF.
My work consists of a Python-Matlab-Mixture, so the solution has to work for both.
When experimenting with the Matlab side I stumbled across an unfortunate Matlab "feature", as all colons (namespace separator in SigMF) will be replaced by an underscore when importing it using jsonencode().
Minimal Example
...
"core:datatype": "cf32_le", // JSON file
"antenna:azimuth_angle": 120,
...After importing the above with jsonencode() it will become :
...
core_datatype = "cf32_le"; % in Matlab
antenna_azimuth_angle = 120;
...This behavior is known in other contexts.
As I don't want to build an ugly wrapper for that, I wanted to ask here if anyone is working with Matlab or if there is a reasonable solution for this.
Thanks!
Daniel
PS: Only found related Issue #58.
Metadata
Metadata
Assignees
Labels
No labels