How to process this text file containing multiple coordinates in Matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Linked above is the kaggle dataset of parkinson's coordinates I need to preprocess in order to put into DNN. I am speciically looking at the Drinking_all_export.txt text file but I could not attatch it because it is too large. Is there a way I can read this text file in matla and seperate the x coordinates and y coordinates into seperate arrays? Also is there a way to seperate it by each catergory(head position,Larm, Rarm, etc.). When I use importdata it puts all of the numbers into one array and doesn't seem to be the correct number either.
0 comentarios
Respuestas (1)
Walter Roberson
el 20 de Abr. de 2023
2 comentarios
Walter Roberson
el 20 de Abr. de 2023
S = fileread('Drinking_all_export.txt');
value = jsondecode(S);
Ver también
Categorías
Más información sobre Cell Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!