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

Fix typos in the inline documentation

parent 185b42a6
No related branches found
No related tags found
1 merge request!265Implement matlab writing for matrices with scalar entries
......@@ -68,16 +68,16 @@ int main(int argc, char** argv)
testWriteMatrixToMatlab<Dune::ScaledIdentityMatrix<std::complex<double>,2> >(Dune::ScaledIdentityMatrix<std::complex<double>,2>(std::complex<double>(0,1)));
/* testing the test writeMatrixToMatlabHelper for FieldVector */
/* testing the writeVectorToMatlabHelper method for FieldVector */
testWriteVectorToMatlab<Dune::FieldVector<double,1> >();
testWriteVectorToMatlab<Dune::FieldVector<float,5> >();
testWriteVectorToMatlab<Dune::FieldVector<std::complex<double>,5> >();
/* testing the test writeMatrixToMatlabHelper for BlockVector */
/* testing the writeVectorToMatlabHelper method for BlockVector */
Dune::BlockVector<Dune::FieldVector<double,3> > v1 = {{1.0, 2.0, 3.0}};
Dune::writeVectorToMatlabHelper(v1, std::cout);
Dune::BlockVector<Dune::BlockVector<Dune::FieldVector<double,1> > > v2 = {{1.0, 2.0}, {3.0, 4.0, 5.0}, {6.0}};
Dune::writeVectorToMatlabHelper(v2, std::cout);
/* testing the test writeMatrixToMatlabHelper for STL containers */
/* testing the writeVectorToMatlabHelper method for STL containers */
testWriteVectorToMatlab<std::array<double,5> >();
std::vector<double> v3;
v3.push_back(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