-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc3dserver.m
29 lines (22 loc) · 1018 Bytes
/
c3dserver.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function itf = c3dserver()
% C3DSERVER - activates C3DServer as a COM (COM.c3dserver_c3d),
% and returns 'itf' as a COM object for the server.
%
% USAGE: itf = c3dserver()
%
% C3D directory contains C3DServer activation and wrapper Matlab functions.
% This function written by:
% Matthew R. Walker, MSc. <[email protected]>
% Michael J. Rainbow, BS. <[email protected]>
% Motion Analysis Lab, Shriners Hospitals for Children, Erie, PA, USA
% Questions and/or comments are most welcome.
% Last Updated: April 21, 2006
% Created in: MATLAB Version 7.0.1.24704 (R14) Service Pack 1
% O/S: MS Windows XP Version 5.1 (Build 2600: Service Pack 2)
%
% Please retain the author names, and give acknowledgement where necessary.
% DISCLAIMER: The use of these functions is at your own risk.
% The authors do not assume any responsibility related to the use
% of this code, and do not guarantee its correctness.
itf = actxserver('C3DServer.C3D');
end