[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Getfem-commits] [getfem-commits] branch fixmisspell updated: :hammer_an
From: |
Tetsuo Koyama |
Subject: |
[Getfem-commits] [getfem-commits] branch fixmisspell updated: :hammer_and_wrench: coding error |
Date: |
Fri, 17 Jan 2020 22:58:37 -0500 |
This is an automated email from the git hooks/post-receive script.
tkoyama010 pushed a commit to branch fixmisspell
in repository getfem.
The following commit(s) were added to refs/heads/fixmisspell by this push:
new 921027a :hammer_and_wrench: coding error
921027a is described below
commit 921027ab5aba25e17c30bc13d242e19d63a77ab9
Author: Tetsuo Koyama <address@hidden>
AuthorDate: Sat Jan 18 10:22:50 2020 +0900
:hammer_and_wrench: coding error
---
doc/sphinx/source/gmm/export.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/sphinx/source/gmm/export.rst b/doc/sphinx/source/gmm/export.rst
index 7edf7f6..7ddf149 100644
--- a/doc/sphinx/source/gmm/export.rst
+++ b/doc/sphinx/source/gmm/export.rst
@@ -12,13 +12,13 @@ Input and output with Harwell-Boeing and Matrix Market
formats
Including the file ``gmm/gmm_inoutput.h`` you will be able to load and save
matrices with Harwell-Boeing and Matrix Market formats. Concerning the
Harwell-Boeing format, only the type ``gmm::csc_matrix<double>`` and
``gmm::csc_matrix<std::complex<double> >`` has been interfaced, so you can
execute::
- Harwell_Boeing_save("filename", A) // save the matrix A .
- Harwell_Boeing_load("filename", A) // load the matrix A.
+ gmm::Harwell_Boeing_save("filename", A); // save the matrix A .
+ gmm::Harwell_Boeing_load("filename", A); // load the matrix A.
If ``A`` is not a ``gmm::csc_matrix<double>`` or a
``gmm::csc_matrix<std::complex<double> >`` a copy is made.
Concerning the Matrix Market format, it is possible to save a
``gmm::csc_matrix<double>`` or a ``gmm::csc_matrix<std::complex<double> >``
and to load a ``gmm::row_matrix<VECT>`` or a ``gmm::col_matrix<VECT>``::
- MatrixMarket_save("filename", A) // save a csc_matrix.
- MatrixMarket_load("filename", A) // load a row_matrix or a col_matrix
+ gmm::MatrixMarket_save("filename", A); // save a csc_matrix.
+ gmm::MatrixMarket_load("filename", A); // load a row_matrix or a col_matrix
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Getfem-commits] [getfem-commits] branch fixmisspell updated: :hammer_and_wrench: coding error,
Tetsuo Koyama <=