CSigmoidalMembershipFunction

AとCのパラメータを持つシグモイドメンバーシップ関数を実装するためのクラス。

説明

シグモイド関数は、単調なメンバーシップ関数を設定するときに適用されます。引数値で始まる値が1のメンバーシップ関数の作成が可能になります。このような関数は、「ショート」や「ロング」などの言語用語を設定する必要がある場合に適しています。

fuzzy_sigmoidal_function

下記はチャートをプロットするためのサンプルコードです。

宣言

  class CSigmoidalMembershipFuncion : public IMembershipFunction

タイトル

  #include <Math\Fuzzy\membershipfunction.mqh>

継承階層

  CObject

      IMembershipFunction

          CSigmoidalMembershipFunction

クラスメソッド

クラスメソッド  

説明

A

メンバーシップ関数の勾配比を取得及び設定します。

С

メンバーシップ関数の屈曲座標パラメータを取得及び設定します。

GetValue

メンバーシップ関数の値を指定された引数で計算します。

クラスから継承されたメソッド CObject

Prev, Prev, Next, Next, Save, Load, Type, Compare

//+------------------------------------------------------------------+
//|                                  SigmoidalMembershipFunction.mq5 |
//|                        Copyright 2016, MetaQuotes Software Corp. |
//|                                             https://www.mql5.com |
//+------------------------------------------------------------------+
#include <Math\Fuzzy\membershipfunction.mqh>
#include <Graphics\Graphic.mqh>
//--- メンバーシップ関数を作成します
CSigmoidalMembershipFunction func1(-2, 4);
CSigmoidalMembershipFunction func2(1, 4);
CSigmoidalMembershipFunction func3(2, 4);
//--- メンバーシップ関数用のラッパーを作成する
double SigmoidalMembershipFunction1(double x) { return(func1.GetValue(x)); }
double SigmoidalMembershipFunction2(double x) { return(func2.GetValue(x)); }
double SigmoidalMembershipFunction3(double x) { return(func3.GetValue(x)); }
//+------------------------------------------------------------------+
//| スクリプトプログラム開始関数                                              |
//+------------------------------------------------------------------+
void OnStart()
 {
//--- グラフィックを作成する
  CGraphic graphic;
  if(!graphic.Create(0,"SigmoidalMembershipFunction",0,30,30,780,380))
    {
     graphic.Attach(0,"SigmoidalMembershipFunction");
    }
  graphic.HistoryNameWidth(70);
  graphic.BackgroundMain("SigmoidalMembershipFunction");
  graphic.BackgroundMainSize(16);
//--- 曲線を作成する
  graphic.CurveAdd(SigmoidalMembershipFunction1,0.0,10.0,0.1,CURVE_LINES,"[-2, 4]");
  graphic.CurveAdd(SigmoidalMembershipFunction2,0.0,10.0,0.1,CURVE_LINES,"[1, 4]");
  graphic.CurveAdd(SigmoidalMembershipFunction3,0.0,10.0,0.1,CURVE_LINES,"[2, 4]");
//--- X軸のプロパティを設定する
  graphic.XAxis().AutoScale(false);
  graphic.XAxis().Min(0.0);
  graphic.XAxis().Max(10.0);
  graphic.XAxis().DefaultStep(1.0);
//--- Y軸のプロパティを設定する
  graphic.YAxis().AutoScale(false);
  graphic.YAxis().Min(0.0);
  graphic.YAxis().Max(1.1);
  graphic.YAxis().DefaultStep(0.2);
//--- プロット
  graphic.CurvePlotAll();
  graphic.Update();
 }