 f1e82a212f
			
		
	
	
		f1e82a212f
		
			
		
	
	
	
	
		
			
			* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts. * Additional unit tests for average functions, and fix to AVERAGEIF() function if third argument is passed * Update change log * Stricter typed comparisons in AVERAGEIF() conditions * Unit tests for BETADIST() and BETAINV()
		
			
				
	
	
		
			29 lines
		
	
	
		
			336 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			336 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [
 | |
|         11,
 | |
|         [10, 7, 9, 27, 2],
 | |
|     ],
 | |
|     [
 | |
|         10,
 | |
|         [10, 7, 9, 27, 2, 5],
 | |
|     ],
 | |
|     [
 | |
|         19,
 | |
|         [10, 15, 32],
 | |
|     ],
 | |
|     [
 | |
|         8.85,
 | |
|         [10.5, 7.2],
 | |
|     ],
 | |
|     [
 | |
|         19.2,
 | |
|         [7.2, 5.4, 45],
 | |
|     ],
 | |
|     [
 | |
|         46.24,
 | |
|         [10.5, 7.2, 200, 5.4, 8.1],
 | |
|     ],
 | |
| ];
 |