aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
Commit message (Collapse)AuthorAge
* Update ComplexEigenSolver_eigenvectors.cppGravatar Rasmus Munk Larsen2021-06-21
|
* Fix typo in SelfAdjointEigenSolver_eigenvectors.cppGravatar Rasmus Munk Larsen2021-06-21
|
* Add MatrixBase::cwiseArg()Gravatar David Tellenbach2020-10-14
|
* Make file formatting comply with POSIX and Unix standardsGravatar Aaron Franke2020-03-23
| | | | UTF-8, LF, no BOM, and newlines at the end of files
* Bug #1785: Introduce numext::rint.Gravatar Ilya Tokar2020-01-07
| | | | | | This provides a new op that matches std::rint and previous behavior of pround. Also adds corresponding unsupported/../Tensor op. Performance is the same as e. g. floor (tested SSE/AVX).
* Bug #1800: Guard against misleading indentationGravatar Christoph Hertzberg2020-01-03
|
* STYLE: Remove CMake-language block-end command argumentsGravatar Hans Johnson2019-10-31
| | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
* Build deprecated snippets with -DEIGEN_NO_DEPRECATED_WARNINGGravatar Christoph Hertzberg2019-07-12
| | | | Also, document LinSpaced only where it is implemented
* PR 574: use variadic template instead of initializer_list to implement ↵Gravatar David Tellenbach2019-01-23
| | | | fixed-size vector ctor from coefficients.
* Cleanup SFINAE in Array/Matrix(initializer_list) ctors and minor doc editing.Gravatar Gael Guennebaud2019-01-22
|
* PR 572: Add initializer list constructors to Matrix and Array (include unit ↵Gravatar David Tellenbach2019-01-21
| | | | | | | | tests and doc) - {1,2,3,4,5,...} for fixed-size vectors only - {{1,2,3},{4,5,6}} for the general cases - {{1,2,3,4,5,....}} is allowed for both row and column-vector
* Add manual doc on STL-compatible iteratorsGravatar Gael Guennebaud2018-11-12
|
* Add and update manual pages for slicing, indexing, and reshaping.Gravatar Gael Guennebaud2018-11-09
|
* Unify c++11 usage in doc's examples and snippetsGravatar Gael Guennebaud2018-10-08
|
* Simplify API by removing allCols/allRows and reusing rowwise/colwise to ↵Gravatar Gael Guennebaud2018-10-05
| | | | define iterators over rows/columns
* Add support for c++11 snippetsGravatar Gael Guennebaud2018-10-05
|
* Change the logic of A.reshaped<Order>() to be a simple alias to ↵Gravatar Gael Guennebaud2018-10-03
| | | | | | A.reshaped<Order>(AutoSize,fix<1>). This means that now AutoOrder is allowed, and it always return a column-vector.
* Fix documentation of reshape to vectors.Gravatar Gael Guennebaud2018-09-25
|
* merge with default EigenGravatar Gael Guennebaud2018-09-21
|\
* | Fix doc wrt previous changeGravatar Gael Guennebaud2018-09-19
| |
| * Fix shadow warnings in doc-snippetsGravatar Christoph Hertzberg2018-08-25
| |
| * fix warnings for doc-eigen-prerequisitesGravatar Christoph Hertzberg2018-07-24
| |
| * bug #336: improve doc for PlainObjectBase::MapGravatar Gael Guennebaud2017-08-22
| |
* | typosGravatar Gael Guennebaud2017-02-21
| |
* | Improve documentation of reshapedGravatar Gael Guennebaud2017-02-21
| |
* | Use Eigen::fix<N> to pass compile-time sizes.Gravatar Gael Guennebaud2017-02-11
| |
* | Use fix<> API to specify compile-time reshaped sizes.Gravatar Gael Guennebaud2017-01-29
| |
* | import yoco xiao's work on reshapeGravatar Gael Guennebaud2017-01-29
|\ \ | |/ |/|
* | Fix typoGravatar Gael Guennebaud2017-01-11
| |
* | Add missing snippet files.Gravatar Gael Guennebaud2017-01-04
| |
* | bug #698: rewrite LinSpaced for integer scalar types to avoid overflow and ↵Gravatar Gael Guennebaud2016-10-24
| | | | | | | | | | | | | | guarantee an even spacing when possible. Otherwise, the "high" bound is implicitly lowered to the largest value allowing for an even distribution. This changeset also disable vectorization for this integer path.
* | bug #1271: add SparseMatrix::coeffs() methods returning a 1D view of the non ↵Gravatar Gael Guennebaud2016-08-29
| | | | | | | | zero coefficients.
* | Fix compilation of docGravatar Gael Guennebaud2016-07-12
| |
* | bug #1237: Redefine eigen_assert instead of disabling assertions for ↵Gravatar Christoph Hertzberg2016-05-26
| | | | | | | | documentation snippets
* | Temporary workaround for bug #1237. The snippet (expectedly) failed with ↵Gravatar Christoph Hertzberg2016-05-26
| | | | | | | | enabled assertions.
* | Add exemples for reshaping/slicing with Map.Gravatar Gael Guennebaud2016-02-06
| |
* | bug #1144: clarify the doc about aliasing in case of resizing and matrix ↵Gravatar Gael Guennebaud2016-01-25
| | | | | | | | product.
* | Add missing snippets for erf/erfc/lgamma functions.Gravatar Gael Guennebaud2015-12-30
| |
* | Add missing snippet for sign/cwiseSign functions.Gravatar Gael Guennebaud2015-12-30
| |
* | [doc] Remove extra ';' in Tutorial_AdvancedInitialization_Join.cppGravatar connor-k2015-12-21
| |
* | Fixed some compiler bugs in NVCC, now compiles with CUDA.Gravatar Jonas Adler2015-07-22
| | | | | | | | (chtz: Manually joined sevaral commits to keep the history clean)
* | Generalize pow(x,e) such that x and e can be a different expression type or ↵Gravatar Gael Guennebaud2015-07-20
| | | | | | | | a scalar for either x or e. Add x.pow(e) with e an array expression.
* | Fix isfinite/isinf/isnan code snippetsGravatar Gael Guennebaud2015-06-15
| |
* | bug #80: merge with d_hood branch on adding more coefficient-wise unary ↵Gravatar Gael Guennebaud2015-06-10
|\ \ | | | | | | | | | array functors
* | | bug #998: Started fixing doxygen warningsGravatar Christoph Hertzberg2015-05-01
| | |
| * | Add boolean not operator (!) array supportGravatar Deanna Hood2015-03-17
| | |
| * | Rename isinf to isInfGravatar Deanna Hood2015-03-17
| | |
| * | Add isfinite array support as isFiniteGravatar Deanna Hood2015-03-17
| | |
| * | Add code snippets for new methodsGravatar Deanna Hood2015-03-17
|/ /
* | Add examples for hnormalized and homogenous (fix bug #846)Gravatar Gael Guennebaud2014-09-02
| |