math4610

Routine Name: l1err

Author: David Merkley

Language: Python

Description/Purpose: Gives the l1err norm

Input: a vector

Output: the norm

Implementation/Code:

def l1err(x, y):
    return lperr(x, y, 1)