Collection of own octave snippets.
- jsontostruct
- This small collection of scripts allows to convert JSON file into octave's structure. Very useful when a huge amount of parameters should be passed around between octave functions. Here is the format that is supported
{ "variable1": { "value" : 1.0, "type" : "float", "description": "Just a dummy variable" }, "variable2": { "value" : [1.0 2.0 3.0 4.0], "type" : "array", "description": "Just a dummy variables in one single array" }, "variable3": { "value" : "RandomString", "type" : "string", "description": "Just a dummy variable, type string" } }
- Joel Feenstra author of JSON Parser
- Rosetta Code
- Viktor Dmitriyev