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.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							237 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							237 B
						
					
					
				
								#include <Eigen/Dense>
							 | 
						|
								#include <iostream>
							 | 
						|
								
							 | 
						|
								using namespace Eigen;
							 | 
						|
								using namespace std;
							 | 
						|
								
							 | 
						|
								int main()
							 | 
						|
								{
							 | 
						|
								  ArrayXXf a(2,2);
							 | 
						|
								  ArrayXXf b(2,2);
							 | 
						|
								  a << 1,2,
							 | 
						|
								       3,4;
							 | 
						|
								  b << 5,6,
							 | 
						|
								       7,8;
							 | 
						|
								  cout << "a * b = " << endl << a * b << endl;
							 | 
						|
								}
							 |