Clear Filters
Clear Filters

How to save entire MATLAB workspace as a JSON file?

16 views (last 30 days)
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

Answers (1)

the cyclist
the cyclist on 29 May 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
  • 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
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.
  1 Comment
AluminiumMan
AluminiumMan on 2 Jun 2024
Hi, thanks for getting back to me. I want to export my workspace into Tableau and JSON is the only file that seems to be compatable from MATLAB to Tableau

Sign in to comment.

Tags

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!