Compute squared matrix norm . More...
#include <matrixNorm.hh>
Public Member Functions | |
SquaredMatrixNorm ()=default | |
Default constructor. | |
SquaredMatrixNorm (const Matrix &A) | |
Constructor. More... | |
void | update (const Matrix &A) |
Reset matrix to compute squared norm from. | |
auto | operator() () const noexcept |
Squared matrix norm. Convenient access to d0(). | |
auto | d0 () const noexcept |
Squared matrix norm. | |
template<int > | |
auto | d1 (const Matrix &dA) const |
First directional derivative. | |
template<int , int > | |
auto | d2 (const Matrix &dA1, const Matrix &dA2) const |
Second directional derivative. | |
Public Member Functions inherited from RFFGen::Base | |
template<class Arg > | |
void | update (const Arg &) |
Update on changed input. | |
template<int id, class Arg > | |
void | updateVariable (const Arg &) |
Empty variables. | |
Compute squared matrix norm .
|
inlineexplicit |
Constructor.
A | matrix to compute squared norm from. |