Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3022-FastFunctionExtraction/FFX/ISimpleBasisFunction.cs @ 17737

Last change on this file since 17737 was 17737, checked in by lleko, 4 years ago

#3022 implement ffx

File size: 310 bytes
Line 
1
2namespace HeuristicLab.Algorithms.DataAnalysis.FastFunctionExtraction {
3    interface ISimpleBasisFunction : IBasisFunction {
4        double Exponent { get; set; }
5        NonlinearOperator Operator { get; set; }
6        double Threshold { get; set; }
7        string Feature { get; set; }
8    }
9}
Note: See TracBrowser for help on using the repository browser.