Get separate values from a mat file

2 vues (au cours des 30 derniers jours)
Brince Babu
Brince Babu le 29 Mai 2022
Réponse apportée : KSSV le 29 Mai 2022
I have a mat file of 1142x12 size where each cell of it is a strcut having fields Joint Names and Joint Position value.I have to separate this into two files having the Joint Positions values only of 1142*12 size and Joint Names into another 1*12 file.
I have attatched the files what I need is to convert the 'Solution.mat' file in the format of 'solution_type_desired.mat'

Réponses (1)

KSSV
KSSV le 29 Mai 2022
load Solution.mat ;
c = struct2cell(conf_solution);
iwant = cell2mat(squeeze(c(2,:,:)));

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by