Skip to content
Snippets Groups Projects
Commit 185b42a6 authored by Oliver Sander's avatar Oliver Sander
Browse files

Test Matlab writing of matrices with scalar entries

parent a006a92b
No related branches found
No related tags found
1 merge request!265Implement matlab writing for matrices with scalar entries
Pipeline #15556 passed
......@@ -53,6 +53,9 @@ int main(int argc, char** argv)
// testWriteMatrixToMatlab<Dune::FieldMatrix<std::complex<double>,7,4> >(); // commented because setUpLaplacian cannot handle block_types with more rows than cols
testWriteMatrixToMatlab<Dune::FieldMatrix<std::complex<double>,2,2> >(Dune::FieldMatrix<std::complex<double>,2,2>(std::complex<double>(0, 1)));
testWriteMatrixToMatlab<double>();
testWriteMatrixToMatlab<std::complex<double> >();
/* testing the writeMatrixToMatlabHelper method for BlockType=[Diagonal|ScaledIdentity]Matrix with different field_types */
testWriteMatrixToMatlab<Dune::DiagonalMatrix<double,1> >();
testWriteMatrixToMatlab<Dune::ScaledIdentityMatrix<double,1> >();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment