GithubHelp home page GithubHelp logo

kyamagu / matlab-json Goto Github PK

View Code? Open in Web Editor NEW
52.0 52.0 15.0 708 KB

Use official API: https://mathworks.com/help/matlab/json-format.html

License: Other

MATLAB 6.44% Makefile 0.15% Java 93.41%

matlab-json's People

Contributors

andersjel avatar caryan avatar kyamagu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

matlab-json's Issues

Fields out of order

Hello Mr. Yamaguchi,

Just for the benefit of other users, I've found another bug while testing simple stuff on json0.2.2:

json.write fails to preserve field order. Example:

a.a = 1;
a.b = 2;
a.c = 3;

>> json.write(a, 'test.json', 'indent', 1)


Result is:

{
 "b": 2,
 "c": 3,
 "a": 1
}

And that's the order I get when using json.read

On the other hand, the JSONLab library on MathWorks handles this properly.

Thanks for your efforts. You don't need to solve this.

Non-reversible parsing

I would expect the following JSON:

{
    "bar": [
        [1],
        [2],
        [3]
    ]
}

to be parsed as struct('bar',{1,2,3}) (or a cell column), but instead it gets parsed as struct('bar',[1;2;3]).

Command didn't produce json file

Hello,
Great job, mister. Unfortunately, the following line doesn't work in my R2013b.

json.write({'a',NaN,'c'},'test.json')

Could you explain why?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.