Add logarithmic scale function

This commit is contained in:
Andy Smith 2014-03-18 19:36:31 +00:00
parent 5a0fa8c09f
commit 48d3317136

View File

@ -232,6 +232,14 @@ function (_) {
defaultParams: ['10s']
});
addFuncDef({
name: 'log',
category: categories.Transform,
params: [ { name: "base", type: "int" }],
defaultParams: ['10']
});
addFuncDef({
name: 'averageAbove',
category: categories.Filter,