I want to read from a json file with Matlab and store everything in \"data\" as objects. After import, I need to iterate through all and extract specific values, if it\'s av
You could try parsing using another json library, such as this one on file exchange.
Alternatively you could try some of the methods listed on this site, such as using matlab's Java and .NET integration and loading with one of their json libraries.
As a third alternative, since the method you have shown above will happily load the first object in the string, you could always do some manual pre-parsing of the string into a cell array of strings containing a single object each, and then parse those.