Routine Name: linftyerr
Author: David Merkley
Language: Python
Description/Purpose: Gives the linftyerr norm
Input: a vector
Output: the norm
Implementation/Code:
def linftyerr(x, y): return lperr(x, y, float('inf'))