Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3022-FastFunctionExtraction/FFX/BasisFunction.cs @ 17219

Last change on this file since 17219 was 17219, checked in by lleko, 5 years ago

#3022 add generateUnivariateBases(), add BasisFunction class

File size: 465 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.DataAnalysis.FastFunctionExtraction
8{
9    public enum operators { Abs, Log, Sin, Cos };
10
11    class BasisFunction
12    {
13        public double _val { get; set; }
14        public string _var { get; set; }
15        public double _exp { get; set; }
16        public operators _op { get; set; }
17    }
18}
Note: See TracBrowser for help on using the repository browser.