Effacer les filtres
Effacer les filtres

How to save entire MATLAB workspace as a JSON file?

16 vues (au cours des 30 derniers jours)
AluminiumMan
AluminiumMan le 29 Mai 2024
Commenté : AluminiumMan le 2 Juin 2024
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

Réponses (1)

the cyclist
the cyclist le 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
  • 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 commentaire
AluminiumMan
AluminiumMan le 2 Juin 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

Connectez-vous pour commenter.

Tags

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by