Documentation Site Map Main Page Reference List Motion Capture Visual3D Overview Visual3D Installation License Activation Getting Started Visual3D Documentation Overview Pipeline Commands Reference Expressions Overview CalTester Mode Overview List of Tutorials Visual3D Examples Overview Troubleshooting Sift Sift Overview Installation Getting Started Sift Documentation Overview Knowledge Discovery for Biomechanical Data Tutorial Overview Troubleshooting Inspect3D Inspect3D Overview Inspect3D Installation Overview Inspect3D Getting Started Overview Inspect3D Documentation Overview Knowledge Discovery in Inspect3D Inspect3D Tutorials Overview Troubleshooting DSX Suite DSX Overview DSX Definitions DSX Suite Installation DSX Tutorials DSX Release Notes xManager Overview PlanDSX Overview Surface3D Overview Orient3D Overview CalibrateDSX Overview Locate3D Overview X4D Overview
This is an old revision of the document!
first_derivative.png |\\ \\ \\ <code>\\ first_derivative\\ /signal_types=the type of signal to be evaluated\\ /signal_names=the name of the signal to be evaluated\\ /signal_folder=the name of the signal folder\\ /result_types= the type of the resulting signal\\ /result_name= the name of the resulting signal \\ /result_folder= the name of the resulting folder \\ /result_suffix= the result is given the same name as the original signal with the suffix added\\ </code> | the first and last data points become data_not_found (identified in the c3d file as a point reliability value of –1). ===== calculation method ===== derivatives are calculated using finite difference algorithms. given the signal: x(ti) for i=1, 2, ..., n the first derivative is calculated using: xdot(ti)= (x(ti+1)-x(ti-1))/( (ti+1)-(ti-1) ) ===== example: velocity of the centre of mass ===== the first_derivative command is useful for calculating the velocity of targets, landmarks, etc. since velocity is the first derivative of position. the following example calculates the velocity of the center of mass using the first_derivative command. <code> ! given a signal representing the center of mass's position as follows: compute_model_based_data /result_name=com /function=model_cog /segment= /reference_segment= ! /resolution_coordinate_system=lab ! /use_cardan_sequence=false ! /normalization=false ! /normalization_method= ! /normalization_metric= ! /negatex=false ! /negatey=false ! /negatez=false ! /axis1=x ! /axis2=y ! /axis3=z ; ! the velocity of the center of mass can be computed as follows: first_derivative /signal_types=link_model_based /signal_names=com ! /signal_folder=original /result_names=com_velocity /result_types=link_model_based /result_folder=velocity ! /result_suffix= ; </code>