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.
		
		
		
		
		
			
		
			
				
					
					
						
							9 lines
						
					
					
						
							426 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							9 lines
						
					
					
						
							426 B
						
					
					
				
								MatrixXd X = MatrixXd::Random(4,4);
							 | 
						|
								MatrixXd A = X * X.transpose();
							 | 
						|
								cout << "Here is a random positive-definite matrix, A:" << endl << A << endl << endl;
							 | 
						|
								
							 | 
						|
								SelfAdjointEigenSolver<MatrixXd> es(A);
							 | 
						|
								cout << "The inverse square root of A is: " << endl;
							 | 
						|
								cout << es.operatorInverseSqrt() << endl;
							 | 
						|
								cout << "We can also compute it with operatorSqrt() and inverse(). That yields: " << endl;
							 | 
						|
								cout << es.operatorSqrt().inverse() << endl;
							 |