| Mike Buess
 
                USA3037 Posts
 | 
                    
                      |  Posted - 01/23/2003 :  08:05:33 AM           
 |  
                      | Use the ave() function. Following definition is copied from LabTalk programming guide... 
 ########################
 ave(dataset, size)
 
 The ave(dataset, size) function breaks dataset into groups of size size, finds the average for each group, and returns a range containing these values.
 ########################
 
 You could use it something like this...
 
 col(B)=ave(col(A),2);
 
 
 
 Mike Buess
 Origin WebRing Member
 |  
                      |  |  |