Routine Name: matrix1Norm
Author: Andrew Aposhian
Language: C++
To use this function, include the correct header file at the top of your file as follows:
#include "MatrixNorms.hpp"
Description/Purpose: The purpose of this function is to take an Array of doubles and return its 1-Norm as a double.
Input:
- An Array object of doubles
Output: A double
representing the L-1 Norm of the input matrix.
Usage/Example: The example below shows creating a random Array and then printing its L-1 Norm.
DenseArray<double>* normishArray = new DenseArray<double>(3, 2);
normishArray->makeRandom();
std::cout << "Matrix to be normed: " << std::endl;
normishArray->print();
std::cout << "Matrix 1-norm: " << std::endl;
std::cout << matrix1Norm(*normishArray) << std::endl;
Output from lines above:
Matrix to be normed:
0.340845 0.587686
0.233252 0.268417
0.291312 0.0755311
Matrix 1-norm:
0.931634
Implementation/Code: See MatrixNorms.cpp on GitHub
double matrix1Norm(Array<double>& a) {
// -1 will always be less than any sum
double maxColL1Norm = -1;
for (unsigned int j = 0; j < a.colDim(); j++) {
double colL1Norm = 0;
for (unsigned int i = 0; i < a.rowDim(); i++) {
colL1Norm += abs(a(i, j));
}
if (colL1Norm > maxColL1Norm) {
maxColL1Norm = colL1Norm;
}
}
return maxColL1Norm;
}
Last Modified: February/2019