- use the who command to identify the variables in the workspace
- make a structure with fields for each variable
- encode the structure into JSON with jsonencode
How to save entire MATLAB workspace as a JSON file?
52 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi everyone, I need to export my MATLAB workspace as a JSON file.
From what I can see, the standard save command wouldn't be useful here.
And the jsonencode help doesn't tell you how to save the entire workspace as a JSON file:
Any help on how to achieve this would be much appreciated
0 Kommentare
Antworten (1)
the cyclist
am 29 Mai 2024
There is no built-in way to do this in MATLAB, and it strikes me as quite difficult to do in a way that is general enough to manage any workspace.
I think the rough outline of how to do this would be
One challenge here is the data types that might need to be converted somehow to fit in the MATLAB structure. Things that come to mind are anonymous function handles and MATLAB objects.
All in all, it seems like a daunting task. What are you trying to do with the JSON object that you create? I wonder if you might be falling into the XY Problem.
Siehe auch
Kategorien
Mehr zu JSON Format finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!