Subversion Repositories gelsvn

Rev

Rev 417 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 417 Rev 596
Line 46... Line 46...
46
    
46
    
47
    cout << "Dot products " 
47
    cout << "Dot products " 
48
	<< dot(Q[0], Q[1]) << " "
48
	<< dot(Q[0], Q[1]) << " "
49
	<< dot(Q[0], Q[2]) << " " 
49
	<< dot(Q[0], Q[2]) << " " 
50
	<< dot(Q[1], Q[2]) << endl;
50
	<< dot(Q[1], Q[2]) << endl;
-
 
51
    
-
 
52
    cout << "Now with identity" << endl;
-
 
53
    A = identity_Mat3x3f();
-
 
54
    n = power_eigensolution(A, Q, L);
-
 
55
    cout << "The " << n << " eigensolutions are ";
-
 
56
    cout << Q << L << endl;
-
 
57
    
-
 
58
    cout << "Dot products " 
-
 
59
	<< dot(Q[0], Q[1]) << " "
-
 
60
	<< dot(Q[0], Q[2]) << " " 
-
 
61
	<< dot(Q[1], Q[2]) << endl;
51
 
62
 
52
	return 0;
63
	return 0;
53
}
64
}