* 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()
		
			
				
	
	
		
			25 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        7.0,
 | 
						|
        [10, 7, 9, 2],
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        5.6,
 | 
						|
        [10, 7, 9, 2, 'STRING VALUE'],
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        8.85,
 | 
						|
        [10.5, 7.2],
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        43.74,
 | 
						|
        [10.5, 7.2, 200, true, false],
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        0.5,
 | 
						|
        [true, false],
 | 
						|
    ],
 | 
						|
];
 |