You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a JSON file, when using array notation (without quotes), only the first value is parsed. When trying to parse:
{ "value" : [3:10] }
value will evaluate to 3. This problem is related to 'sscanf' function in line 179 from loadjson.m:
[obj, count, errmsg, nextidx]=sscanf(astr,'%f,',[1,inf]);
The text was updated successfully, but these errors were encountered:
In a JSON file, when using array notation (without quotes), only the first value is parsed. When trying to parse:
{ "value" : [3:10] }
value will evaluate to 3. This problem is related to 'sscanf' function in line 179 from loadjson.m:
[obj, count, errmsg, nextidx]=sscanf(astr,'%f,',[1,inf]);
The text was updated successfully, but these errors were encountered: