readstruct json seems to wrongly combine structs into a vector
조회 수: 4 (최근 30일)
이전 댓글 표시
I was reading the following json file with the readstruct function:
{
"demo": [
{
"field1": 198.0,
"field2": 70.0,
},
{
"field3": 1024,
}
]
}
and, to my surprise, I am not getting a cell array with structs, but a struct vector:
>> d = readstruct("demo.json")
d =
struct with fields:
demo: [1×2 struct]
where each of the elements in the struct vector has the following fields:
>> d.demo(1)
ans =
struct with fields:
field1: 198
field2: 70
field3: <missing>
>> d.demo(2)
ans =
struct with fields:
field1: <missing>
field2: <missing>
field3: 1024
Is this a bug? I would expect the import to return a cell array here.
댓글 수: 2
채택된 답변
추가 답변 (1개)
Vandit
2024년 9월 18일
Hello Adam,
No, this is not a bug. The "readstruct" function in MATLAB reads a JSON file and returns a struct array. In your case, the JSON file contains an array of objects, so it is imported as a struct array. Each element in the struct array corresponds to an object in the JSON array.
If you want to convert the struct array into a cell array of structs, you can use the "struct2cell" function. Here's an example:
cellArray = struct2cell(d.demo)
This will give you a cell array where each cell contains a struct with the fields 'field1', 'field2', and 'field3'.
For more information on "readstruct" and "struct2cell" functions, please refer to the following documentations:
Hope this helps.
참고 항목
카테고리
Help Center 및 File Exchange에서 JSON Format에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!