view tvii/dot.py @ 35:37a9fb876f54

[documentation] add notes for matrices + vectorization
author Jeff Hammel <k0scist@gmail.com>
date Mon, 04 Sep 2017 13:55:48 -0700
parents bb8b6b06ca83
children
line wrap: on
line source

"""
dot product
"""

def dot(w, x):
    """inner dot product"""
    assert len(w) == len(x)
    return sum([a*b for a, b in zip(w,x)])