From 9728b3787c039dc5a37472e42072254827a831ff Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Sat, 12 Oct 2019 18:46:35 +0300 Subject: [PATCH] ScLERP: fix argument order FC PR 2613 --- lattice2ScLERP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lattice2ScLERP.py b/lattice2ScLERP.py index 1c3fd94..6675fcd 100644 --- a/lattice2ScLERP.py +++ b/lattice2ScLERP.py @@ -92,7 +92,7 @@ class LatticeScLERP(lattice2BaseFeature.LatticeFeature): # prepare lists of input samples def plmByVal(val): - return plm1.sclerp(val, plm2, host.Shorten) + return plm1.sclerp(plm2, val, host.Shorten) output = [plmByVal(val) for val in values]