Matlab code for processing .sto file

Provide easy-to-use, extensible software for modeling, simulating, controlling, and analyzing the neuromusculoskeletal system.
POST REPLY
User avatar
Md Sanzid Bin Hossain
Posts: 15
Joined: Mon Aug 26, 2019 7:58 am

Matlab code for processing .sto file

Post by Md Sanzid Bin Hossain » Wed Nov 13, 2019 2:59 pm

Hi,
can anyone provide me with a Matlab script to process .sto file data of OpenSim?

Thanks

Tags:

User avatar
jimmy d
Posts: 1375
Joined: Thu Oct 04, 2007 11:51 pm

Re: Matlab code for processing .sto file

Post by jimmy d » Wed Nov 13, 2019 5:18 pm

There is documentation on the OpenSim Wiki. However that may be for the most current version (built from source). If you are using the 4.0 downloaded from SimTK, then it will be something like;

Code: Select all

dataTable = STOFileAdapter.read('path2File.m')
dataStruct = osimTableToStruct(dataTable);

POST REPLY