fuzzy :: norm :: Max :: Max :: Class Max
[hide private]
[frames] | no frames]

Class Max

source code


Instance Methods [hide private]
 
__init__(self)
Initialize type of norm
source code
float
__call__(self, *args)
Return maximum of given values.
source code

Inherited from Norm.Norm: __repr__, checkArgs2, checkArgsN, getType

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from Norm.Norm: S_NORM, T_NORM, UNKNOWN

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Initialize type of norm

Overrides: object.__init__
(inherited documentation)

__call__(self, *args)
(Call operator)

source code 

Return maximum of given values.

Parameters:
  • args - list of floats as arguments for norm.
Returns: float
result of norm calulation
Raises:
  • NormException - any problem in calculation (wrong number of arguments, numerical problems)
Overrides: Norm.Norm.__call__