matlab 读取、处理json文件
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
1、需要下载一个包jsonlab,csdn上有很多资源
2、该函数实现的功能就是把一个json分割为4个json。通过判断iCellIdx字段,可能只分割为<4个json。
function [cellNum,cellList]=jsonSplit(jsonPath)%'E:\0105\PUSCH_HF_1_000033.json'
addpath(genpath([pwd '\jsonlab']));%包jsonlab包放在jsonSplit同一路径下
jsonData=loadjson(jsonPath);%获取json
n = 0;
for i=1:4
cellId = struct('tSystemParIn',jsonData.tSystemParIn(i));%把获取的json struct化
if cellId.tSystemParIn.iCellIdx == -1 %获取json中的某个字段
continue;
end
n = n+1;
cellNum = n;
cellList(n)=i;
jsonmesh=struct('tSystemParIn',jsonData.tSystemParIn(i),...
'tChannelParIn',jsonData.tChannelParIn(i),...
'tPuschParIn',jsonData.tPuschParIn(i),...
'tPucchParIn',jsonData.tPucchParIn(i),...
'tPrachParIn',jsonData.tPrachParIn(i),...
'tSrsParIn',jsonData.tSrsParIn(i));
fname=sprintf('cellId%d.json',i);
if exist(fname,'file')==0
delete(fname);
end
savejson('',jsonmesh,fname); %把json分成四个json,并保存成四个json文件
end
end
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:3 个月前 )
2d42229f
* Support BSON uint64 de/serialization
Signed-off-by: Michael Valladolid <mikevalladolid@gmail.com>
* Treat 0x11 as uint64 and not timestamp specific
Signed-off-by: Michael Valladolid <mikevalladolid@gmail.com>
---------
Signed-off-by: Michael Valladolid <mikevalladolid@gmail.com> 7 天前
1809b3d8
Signed-off-by: Niels Lohmann <mail@nlohmann.me> 8 天前
更多推荐
已为社区贡献4条内容
所有评论(0)