AABB
AlignmentBehavior
ArriveBehavior
AStar
BFS
BoundingSphere
BVH
BVHNode
Cell
CellSpacePartitioning
CohesionBehavior
CompositeGoal
ConvexHull
Corridor
CostTable
DFS
Dijkstra
Edge
EntityManager
EvadeBehavior
EventDispatcher
Behavior
FollowPathBehavior
FuzzyAND
FuzzyCompositeTerm
FuzzyFAIRLY
FuzzyModule
FuzzyOR
FuzzyRule
FuzzySet
FuzzyTerm
FuzzyVariable
FuzzyVERY
GameEntity
Goal
GoalEvaluator
Graph
GraphUtils
HalfEdge
HeuristicPolicyDijkstra
HeuristicPolicyEuclid
HeuristicPolicyEuclidSquared
HeuristicPolicyManhattan
InterposeBehavior
LeftSCurveFuzzySet
LeftShoulderFuzzySet
LineSegment
Logger
MathUtils
Matrix3
Matrix4
MemoryRecord
MemorySystem
MeshGeometry
MessageDispatcher
MovingEntity
NavEdge
NavMesh
NavMeshLoader
NavNode
Node
NormalDistFuzzySet
OBB
ObstacleAvoidanceBehavior
OffsetPursuitBehavior
OnPathBehavior
Path
Plane
Polygon
Polyhedron
PriorityQueue
PursuitBehavior
Quaternion
Ray
RectangleTriggerRegion
Regular
RightSCurveFuzzySet
RightShoulderFuzzySet
SAT
SeekBehavior
SeparationBehavior
SingletonFuzzySet
Smoother
SphericalTriggerRegion
State
StateMachine
SteeringBehavior
SteeringManager
Task
TaskQueue
Telegram
Think
Time
TriangularFuzzySet
Trigger
TriggerRegion
Vector3
Vehicle
Version
WanderBehavior

minRange

minRange 是 FuzzyVariable 类中的一个属性,表示模糊变量的最小范围。

说明

minRange 属性是 Yuka js 库中 FuzzyVariable 类的一个属性,用于定义模糊变量的最小范围。在模糊推理过程中,通常会把输入变量映射到一个确定的范围。如果输入值小于最小范围,那么对应的隶属度将会为 0。

数据类型

minRange 属性的数据类型为 number

默认值

默认情况下,minRange 属性的值为 0。

设置方式

minRange 属性可以通过 FuzzyVariable 类的构造函数进行设置:

const myFuzzyVariable = new FuzzyVariable('Temperature', 0, 100);
myFuzzyVariable.minRange = 10;

注意事项

  • minRange 属性必须小于等于 maxRange 属性。
  • 如果没有指定 minRange 属性,那么默认情况下的最小范围为 0。
  • 如果模糊变量没有任何一个术语函数覆盖了最小范围,那么在模糊推理过程中对应的隶属度将会为 0。

示例

const myFuzzyVariable = new FuzzyVariable('Temperature', 0, 100);
myFuzzyVariable.minRange = 10;

在上面的示例中,myFuzzyVariable 是一个表示温度的模糊变量,其最小范围为 10。