C3D.new

Previous  Next

 

Fid = C3D.new( FileName  AS STRING,

               nFrames   AS INTEGER,

               nPoints   AS INTEGER,

               nFreq     AS INTEGER,

              [nAdChan   AS INTEGER=0],

              [nAdMult   AS INTEGER=0],

              [nOptions  AS INTEGER=0] ) AS HANDLE

 


 

Creates a new C3D file.  The Fid = 0 if the function fails.

 

Example:

 

DIM fid AS HANDLE

 

fid = C3D.New( "e:\kalle.c3d", 100, 4, 60, 0, 0 )

 

IF fid <> NULL THEN

       ' Do some stuff with the file....

       

       ' Close the file

       C3D.Close( fid )

ENDIF

 

END