You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
saves the values in the structure 'data' to a file in JSON format.
Based on the work of Lior Kirsch at: https://uk.mathworks.com/matlabcentral/fileexchange/50965-structure-to-json
Modification by Arthur Y.C. Liu 24/06/2020
Example:
data.name = 'chair';
data.color = 'pink';
data.metrics.imageSize = [1920; 1080];
data.metrics.height = 0.3;
data.metrics.width = 1.3;
saveJSONfile(data, 'out.json');
Output 'out.json':
{
"name" : "chair",
"color" : "pink",
"eye" :
[
1,
0,
0,
0,
1,
0,
0,
0,
1
],
"metrics" :
{
"imageSize" :
[
1920,
1080
],
"height" : 0.3,
"width" : 1.3
}
}
Cite As
Arthur LIU (2026). Structure and object to JSON (https://in.mathworks.com/matlabcentral/fileexchange/77284-structure-and-object-to-json), MATLAB Central File Exchange. Retrieved .
Acknowledgements
Inspired by: Structure to JSON
General Information
- Version 1.0.4 (1.92 KB)
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
