math4610

Routine Name: l2err

Author: David Merkley

Language: Python

Description/Purpose: Gives the l2err norm

Input: a vector

Output: the norm

Implementation/Code:

def l2err(x, y):
    return lperr(x, y, 2)