How to save entire MATLAB workspace as a JSON file?

34 次查看(过去 30 天)
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

回答(1 个)

the cyclist
the cyclist 2024-5-29
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 个评论
AluminiumMan
AluminiumMan 2024-6-2
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

请先登录,再进行评论。

标签

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by