Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as Python by Michael ( 8 years ago )
import numpy as np

def intk_2(A, x, tl):
    s = 0
    l = A.size
    if A.size > tl:
        l = tl
    for tau in np.arange(l):
        s += A[tau] * x[tl - tau]
    return s

 

Revise this Paste

Parent: 93396
Children: 93398
Your Name: Code Language: