Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

About

Collection of own octave snippets.

Collection Description

  • 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"
             }
     	}
    

Credits

Author

  • Viktor Dmitriyev