/
Advanced MATLAB modeling
Advanced MATLAB modeling
From Nexus 2.2 and later releases, to simplify biomechanical modeling, additional MATLAB scripts are available in the Nexus SDK.
Classes that represent trajectories (read from Nexus or created as modeled markers), body segments, and angle outputs have been included to ease modeling of biomechanics based on Nexus data.
Sample functions include the following.
Calculating the angles between two segments
% Calculate the angle between two segments. % Can choose euler, fixed or helical angle. % Specify order of output angles for fixed and euler. LKneeAnglesEulerML = AngleBetween( LThigh, LShank, 'euler', 'yxz' ); LKneeAnglesEulerML.Create( vicon ); LKneeAnglesEulerML.Write( vicon ); LKneeAnglesFixedML = AngleBetween( LThigh, LShank, 'fixed' ); LKneeAnglesFixedML.Create( vicon ); LKneeAnglesFixedML.Write( vicon ); LKneeAnglesHelicalML = AngleBetween( LThigh, LShank, 'helical' ); LKneeAnglesHelicalML.Create( vicon ); LKneeAnglesHelicalML.Write( vicon )
Creating modeled markers based on existing trajectory data
% Create a trajectory from the segment origin LThighPosML = NexusTrajectory( 'Colin' ); LThighPosML.SetPosition( LThigh.Position() ); LThighPosML.Create( vicon ); LThighPosML.Write( vicon );
Translating points in the coordinate system of existing segments
% Create a global trajectory that is offset by (100,0,0) in the % segment coordinate system Offset = NexusTrajectory('Colin'); Offset.SetPosition( [100;0;0] ); TestTranslateML = LKNE + Offset*LThigh - LThigh.Position(); TestTranslateML = LThigh.TranslatePointInSegment( LKNE, [100; 0; 0 ] ); TestTranslateML.Create( vicon ); TestTranslateML.Write( vicon );
, multiple selections available,
Related content
Advanced MATLAB modeling
Advanced MATLAB modeling
More like this
Advanced MATLAB modeling
Advanced MATLAB modeling
More like this
Getting started with Vicon ProCalc
Getting started with Vicon ProCalc
More like this
Example of modeling with MATLAB
Example of modeling with MATLAB
More like this
Example of modeling with MATLAB
Example of modeling with MATLAB
More like this
Vicon ProCalc 6DOF Modeling Tutorial
Vicon ProCalc 6DOF Modeling Tutorial
More like this