Commit 0c42b9a6 by Torkel Ödegaard

Merge pull request #212 from andrewmichaelsmith/log_func

Add logarithmic scale function
parents 5a0fa8c0 48d33171
...@@ -233,6 +233,14 @@ function (_) { ...@@ -233,6 +233,14 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: 'log',
category: categories.Transform,
params: [ { name: "base", type: "int" }],
defaultParams: ['10']
});
addFuncDef({
name: 'averageAbove', name: 'averageAbove',
category: categories.Filter, category: categories.Filter,
params: [ { name: "n", type: "int", } ], params: [ { name: "n", type: "int", } ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment