X-Git-Url: http://git.tremily.us/?p=hooke.git;a=blobdiff_plain;f=hooke%2Fplugin%2Fvclamp.py;h=770a2240010d77aa65f2dbcc51e4d07b30f2ae23;hp=1115cde9803e032e39c2d084423c45f42f5dccb9;hb=67595c5307585d9a2280b6056c5c5399f1d61306;hpb=df84350d950dfdad8f281e22ead8056c7167d0fb diff --git a/hooke/plugin/vclamp.py b/hooke/plugin/vclamp.py index 1115cde..770a224 100644 --- a/hooke/plugin/vclamp.py +++ b/hooke/plugin/vclamp.py @@ -638,7 +638,9 @@ Name of the flattening information in the `.info` dictionary. 'degree':degree, 'polynomial values':poly_values, } - out = def_data - mask*scipy.polyval(poly_values, dist_data) + out = (def_data + - numpy.invert(mask)*scipy.polyval(poly_values[-1:], dist_data) + - mask*scipy.polyval(poly_values, dist_data)) self._set_column(hooke=hooke, params=params, column_name='output deflection column', values=out)