Numworks Epsilon  1.4.1
Graphing Calculator Operating System
one_parameter_law.h
Go to the documentation of this file.
1 #ifndef PROBABILITE_ONE_PARAMETER_LAW_H
2 #define PROBABILITE_ONE_PARAMETER_LAW_H
3 
4 #include "law.h"
5 
6 namespace Probability {
7 
8 class OneParameterLaw : public Law {
9 public:
10  OneParameterLaw(float parameterValue);
11  int numberOfParameter() override;
12  float parameterValueAtIndex(int index) override;
13  void setParameterAtIndex(float f, int index) override;
14 protected:
15  float m_parameter1;
16 };
17 
18 }
19 
20 #endif
void setParameterAtIndex(float f, int index) override
float parameterValueAtIndex(int index) override
OneParameterLaw(float parameterValue)