getfem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Getfem-commits] r4892 - in /trunk/getfem: doc/sphinx/source/gmm/blas.rs


From: logari81
Subject: [Getfem-commits] r4892 - in /trunk/getfem: doc/sphinx/source/gmm/blas.rst doc/sphinx/source/replaces.txt tests/gmm_torture06_mat_mult.cc
Date: Thu, 19 Mar 2015 12:51:24 -0000

Author: logari81
Date: Thu Mar 19 13:51:23 2015
New Revision: 4892

URL: http://svn.gna.org/viewcvs/getfem?rev=4892&view=rev
Log:
write Frobenius without umlaut (according to Wikipedia)

Modified:
    trunk/getfem/doc/sphinx/source/gmm/blas.rst
    trunk/getfem/doc/sphinx/source/replaces.txt
    trunk/getfem/tests/gmm_torture06_mat_mult.cc

Modified: trunk/getfem/doc/sphinx/source/gmm/blas.rst
URL: 
http://svn.gna.org/viewcvs/getfem/trunk/getfem/doc/sphinx/source/gmm/blas.rst?rev=4892&r1=4891&r2=4892&view=diff
==============================================================================
--- trunk/getfem/doc/sphinx/source/gmm/blas.rst (original)
+++ trunk/getfem/doc/sphinx/source/gmm/blas.rst Thu Mar 19 13:51:23 2015
@@ -109,7 +109,7 @@
   gmm::vect_dist2(V1, V2)  // Euclidean distance between V1 and V2.
   gmm::vect_norminf(V)    // infinity norm of vector V.
   gmm::mat_euclidean_norm(M) // Euclidean norm of matrix ``M``
-                             // (called also Fr\"obenius norm).
+                             // (called also Frobenius norm).
   gmm::mat_maxnorm(M) // Max norm (defined as max(|m_ij|; i,j ))
   gmm::mat_norm1(M)   // max(sum(|m_ij|, i), j)
   gmm::mat_norminf(M) // max(sum(|m_ij|, j), i)
@@ -124,4 +124,4 @@
 --------------
 
 
-  for vectors only, ``gmm::vect_sp(V1, V2)`` gives the scalar product between 
``V1`` and ``V2``. For complex vectors, this do not conjugate ``V1``, you can 
use ``gmm::vect_sp(V1, gmm::conjugated(V2))`` or ``gmm::vect_hp(V1, V2)`` which 
is equivalent.
+  for vectors only, ``gmm::vect_sp(V1, V2)`` gives the scalar product between 
``V1`` and ``V2``. For complex vectors, this do not conjugate ``V1``, you can 
use ``gmm::vect_sp(V1, gmm::conjugated(V2))`` or ``gmm::vect_hp(V1, V2)`` which 
is equivalent.

Modified: trunk/getfem/doc/sphinx/source/replaces.txt
URL: 
http://svn.gna.org/viewcvs/getfem/trunk/getfem/doc/sphinx/source/replaces.txt?rev=4892&r1=4891&r2=4892&view=diff
==============================================================================
--- trunk/getfem/doc/sphinx/source/replaces.txt (original)
+++ trunk/getfem/doc/sphinx/source/replaces.txt Thu Mar 19 13:51:23 2015
@@ -97,4 +97,4 @@
 .. |gnufreedoc| replace:: GNU Free Documentation License
 .. _gnufreedoc: http://www.gnu.org/licenses/fdl.html
 .. |Lame| unicode:: Lam U+00E9
-.. |Frobenius| unicode:: Fr U+00F6 benius
+.. |Frobenius| unicode:: Frobenius

Modified: trunk/getfem/tests/gmm_torture06_mat_mult.cc
URL: 
http://svn.gna.org/viewcvs/getfem/trunk/getfem/tests/gmm_torture06_mat_mult.cc?rev=4892&r1=4891&r2=4892&view=diff
==============================================================================
--- trunk/getfem/tests/gmm_torture06_mat_mult.cc        (original)
+++ trunk/getfem/tests/gmm_torture06_mat_mult.cc        Thu Mar 19 13:51:23 2015
@@ -51,7 +51,7 @@
   R error = mat_euclidean_norm(m4)
     - mat_euclidean_norm(m1) * mat_euclidean_norm(m2);
   if (error > prec * R(100))
-    GMM_ASSERT1(false, "Inconsistence of fröbenius norm" << error);
+    GMM_ASSERT1(false, "Inconsistence of Frobenius norm" << error);
 
   error = mat_norm1(m4) - mat_norm1(m1) * mat_norm1(m2);
   if (error > prec * R(100))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]