Ignore:
Timestamp:
Dec 9, 2022, 11:43:57 AM (17 months ago)
Author:
Frédéric Chapoton <chapoton@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
c9d548b553dc5c68b96208a1a69eea9c2e5921ea
Parents:
a26d28d708999ea2f59a21ad34587f50825593e2
Message:
fixing various typos (found using egrep)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/linear_algebra/linearAlgebra.h

    ra26d28 r1e1990  
    178178 * With A denoting the matrix to be inverted, the method expects the
    179179 * LU-decomposition of A, that is, pMat * A = lMat * uMat, where
    180  * the argument matrices have the appropriate proteries; see method
     180 * the argument matrices have the appropriate properties; see method
    181181 * 'luDecomp(const matrix aMat, matrix &pMat, matrix &lMat,
    182182 * matrix &uMat)'.<br>
     
    231231 * The method expects the LU-decomposition of A, that is,
    232232 * pMat * A = lMat * uMat, where the argument matrices have the
    233  * appropriate proteries; see method
     233 * appropriate properties; see method
    234234 * 'luDecomp(const matrix aMat, matrix &pMat, matrix &lMat,
    235235 * matrix &uMat)'.<br>
     
    276276 * The method expects the LDU-decomposition of A, that is,
    277277 * pMat * A = lMat * dMat^(-1) * uMat, where the argument matrices have
    278  * the appropriate proteries; see method
     278 * the appropriate properties; see method
    279279 * 'lduDecomp(const matrix aMat, matrix &pMat, matrix &lMat,
    280280 * matrix &dMat, matrix &uMat, poly &l, poly &u, poly &lTimesU)'.<br>
Note: See TracChangeset for help on using the changeset viewer.