필터 지우기
필터 지우기

Arranging JSON-formatted txt file

조회 수: 4 (최근 30일)
Divya
Divya 2022년 11월 21일
댓글: Divya 2022년 11월 21일
Hi,
I have JSON-formatted txt file from which I need to extract data and process it for further evaluation. This file contains values for 6 parameters and displays as 1x28272 table. How do I make these 6 parameters as seperate columns?
Any help would be great/
Thanks and Regards,
Divya
This is how my data looks :
{"phase":["328.17418282485926","98.13568811161387","267.3230213793066...........,"],"rssi":["....."],"halfrow":["......"],"tag":["........"],"time":["......"],"frequency":["....."]}
  댓글 수: 2
KSSV
KSSV 2022년 11월 21일
Explore functions like table2struct, table2cell.
Or attach your data along with the code you tried.
Divya
Divya 2022년 11월 21일
This is what I tried :
RFID_data = readtable('tagdata_new_0_height_0_03_08_22_12');

댓글을 달려면 로그인하십시오.

채택된 답변

Askic V
Askic V 2022년 11월 21일
Maybe something like this:
raw = '{"phase":["328.17418282485926","98.13568811161387","267.3230213793066...........,"],"rssi":["....."],"halfrow":["......"],"tag":["........"],"time":["......"],"frequency":["....."]}';
data = jsondecode(raw); % Using the jsondecode function to parse JSON from string
data.phase
ans = 3×1 cell array
{'328.17418282485926' } {'98.13568811161387' } {'267.3230213793066...........,'}
data.rssi
ans = 1×1 cell array
{'.....'}
  댓글 수: 3
Askic V
Askic V 2022년 11월 21일
I would start with this (found on another thread)
fileName = 'tagdata_new_0_height_0_03_08_22_12.txt'; % filename in JSON extension
fid = fopen(fileName); % Opening the file
raw = fread(fid,inf); % Reading the contents
str = char(raw'); % Transformation
fclose(fid); % Closing the file
data = jsondecode(str); % Using the jsondecode function to parse JSON from string
fields = fieldnames(data);
phase = str2double(data.(fields{1}));
Divya
Divya 2022년 11월 21일
This works perfectly!
Thanks,
Divya

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 JSON Format에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by