File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed 
lib/node_modules/@stdlib/stats/incr/nanmeanabs Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ var incrnanmeanabs = require( '@stdlib/stats/incr/nanmeanabs' );
5353
5454#### incrnanmeanabs()  
5555
56- Returns an accumulator ` function `  which incrementally computes an [ arithmetic mean] [ arithmetic-mean ]  of absolute values, ignoring ` NaN `  values.
56+ Returns an accumulator function which incrementally computes an [ arithmetic mean] [ arithmetic-mean ]  of absolute values, ignoring ` NaN `  values.
5757
5858``` javascript 
5959var  accumulator =  incrnanmeanabs ();
@@ -112,7 +112,6 @@ var accumulator = incrnanmeanabs();
112112
113113//  For each simulated datum, update the mean...
114114var  i;
115- 
116115for  ( i =  0 ; i <  100 ; i++  ) {
117116    accumulator ( ( bernoulli ( 0.8  ) <  1  ) ?  NaN  :  uniform ( - 100.0 , 100.0  ) );
118117}
Original file line number Diff line number Diff line change 1818
1919// TypeScript Version: 4.1 
2020
21- /// <reference types="@stdlib/types"/> 
22- 
2321/** 
2422* If provided a value, returns an updated arithmetic mean; otherwise, returns the current arithmetic mean. 
2523* 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments