| 25 | #include "vectorvalue.h" |
| 26 | |
| 27 | NormFunction::NormFunction() : Function("norm") |
| 28 | { |
| 29 | addDescription(tr("Returns the strictly positive length of a given number, vector or complex value.")); |
| 30 | addParameter("value"); |
| 31 | } |
| 32 | |
| 33 | Value& NormFunction::evaluate(const Context& ctx) const |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected