sigmoid: threshold-filter

    description:
        threshold-filter[t] ket
        if x < t, return 0
        else return x

    examples:
        threshold-filter[2] (3|a> + 2.2|b> - 3 |c> + |d>)
            3|a> + 2.2|b> + 0|c> + 0|d>
    
    see also:
        not-threshold-filter

Home