StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
				https://doi.org/10.1109/TVCG.2020.3030352
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							407 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							407 B
						
					
					
				module.exports = str
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns a string representation of a mat3
 | 
						|
 *
 | 
						|
 * @alias mat3.str
 | 
						|
 * @param {mat3} mat matrix to represent as a string
 | 
						|
 * @returns {String} string representation of the matrix
 | 
						|
 */
 | 
						|
function str(a) {
 | 
						|
  return 'mat3(' + a[0] + ', ' + a[1] + ', ' + a[2] + ', ' +
 | 
						|
                   a[3] + ', ' + a[4] + ', ' + a[5] + ', ' +
 | 
						|
                   a[6] + ', ' + a[7] + ', ' + a[8] + ')'
 | 
						|
}
 | 
						|
 |