Recording data into Arrays

MEDState Notation Repository Forums Coding Help Archive Recording data into Arrays

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #13346
    Med_Support
    Moderator
    milliel

    Is it possible to set different column lengths for different arrays? I currently have my columns set for my largest array but it is throwing off my other smaller array data collection.

    #13348
    Med_Support
    Moderator
    Gary Bamberger

    Unfortunately it is not.  The DISKCOLUMNS command affects all data arrays the same.

    What I have done in the past is to create the array so that certain data elements are left empty:

    \ C() = Array 1
    \ C(I)   = Trial #
    \ C(I+1) = Data 1
    \ C(I+2) = Data 2
    \ C(I+3) = Data 3
    \ C(I+4) = Data 4
    \ C(I+5) = Data 5
    \ C(I+6) = Data 6
    
    \ D() = Array 2
    \ D(J)   = Trial #
    \ D(J+1) = Data 1
    \ D(J+2) = Data 2
    \ D(J+3) = Data 3
    \ D(J+4) = Data 4
    \ D(J+5) = Not Used
    \ D(J+6) = Not Used
    

     

    I hope that this helps.
    Gary

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.