ARCS6 AR6-REV.24062600
読み取り中…
検索中…
一致する文字列を見つけられません
HysteresisComparator.hh
[詳解]
1
5//
6// Copyright (C) 2011-2019 Yuki YOKOKURA
7// This program is free software;
8// you can redistribute it and/or modify it under the terms of the FreeBSD License.
9// For details, see the License.txt file.
10
11#ifndef HYSTERESISCOMPARATOR
12#define HYSTERESISCOMPARATOR
13
14namespace ARCS { // ARCS名前空間
17 public:
18 HysteresisComparator(double Left, double Right);
20 double GetSignal(double u);
21
22 private:
23 HysteresisComparator(const HysteresisComparator&) = delete; // コピーコンストラクタ使用禁止
24 const HysteresisComparator& operator=(const HysteresisComparator&) = delete;// 代入演算子使用禁止
25 double R;
26 double L;
27 double yZ1;
28 };
29}
30
31#endif
32
ヒステリシス比較器
Definition HysteresisComparator.hh:16
HysteresisComparator(double Left, double Right)
コンストラクタ
Definition HysteresisComparator.cc:18
double GetSignal(double u)
出力信号の取得
Definition HysteresisComparator.cc:32
~HysteresisComparator()
デストラクタ
Definition HysteresisComparator.cc:25