MATLAB: Read specific file with just one line

data import

Hi,
maybe I'm just to blinkered now, but I can't see the solution for this (seems so easy to me but I don't get it -.-):
I got a File with just one line, storing different parameters and data, the File looks like this:
{"parameter1": [0.0, 0.0, 0.0, 0.0], "parameter2": [58, 57, 51, 61]}
there is always a different number of values in the brackets. how can I import this to Matlab?
Thank you!

Best Answer

found the answer myself.... it's a json file, so jsondecode() works perfectly
Related Question