Skip to content
Snippets Groups Projects
Commit dd155dab authored by Patrick Imbo's avatar Patrick Imbo
Browse files

ENH: writting covariance matrix

parent 2fe6cd02
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,12 @@ public:
ComplexType hhvv(M33-M44,-2.*M34);
ComplexType hvvv(M13-M23,-1.*(M14-M24));
result[0] = static_cast<OutputValueType>( hhhh );
result[1] = static_cast<OutputValueType>( 2.* hhhv );
result[2] = static_cast<OutputValueType>( hhvv );
result[3] = static_cast<OutputValueType>( 4.* hvhv );
result[4] = static_cast<OutputValueType>( 2.* hvvv );
result[5] = static_cast<OutputValueType>( vvvv );
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment