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.
		
		
		
		
		
			
		
			
				
					
					
						
							15 lines
						
					
					
						
							408 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							15 lines
						
					
					
						
							408 B
						
					
					
				| #include <iostream> | |
| #include <Eigen/Dense> | |
|  | |
| using namespace std; | |
| using namespace Eigen; | |
| 
 | |
| int main() | |
| { | |
|    MatrixXf A = MatrixXf::Random(3, 2); | |
|    cout << "Here is the matrix A:\n" << A << endl; | |
|    VectorXf b = VectorXf::Random(3); | |
|    cout << "Here is the right hand side b:\n" << b << endl; | |
|    cout << "The least-squares solution is:\n" | |
|         << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl; | |
| }
 |