view tvii/dot.py @ 4:e257f0bb12c9

remove boilerplate
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Aug 2017 17:22:53 -0700
parents 1214c127fe43
children be09c8fc58b8
line wrap: on
line source

"""
dot product
"""

def dot(w, x):
    """inner dot product"""
    
    raise NotImplementedError('TODO')