Difference between revisions of "Extensions.Util.Min"

From emotive
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE: '''Min'''}}Category:Util == Classification == {{ClassificationActivity | Min | UPDATING...<!--Create an event source for change event--> | Term | Ex...")
 
Line 1: Line 1:
{{DISPLAYTITLE:  '''Min'''}}[[Category:Util]]
+
{{DISPLAYTITLE:  '''Max'''}}[[Category:Util]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | Min | UPDATING...<!--Create an event source for change event--> | [[Term]] | [[Extensions.Util|OTX Util extension]] | UPDATING... | UPDATING... | UPDATING... }}
+
{{ClassificationActivity | Max |Gets the max of all its operands. | [[Term]] | [[Extensions.Util|OTX Util extension]] | [[Extensions.Util#Terms|Util related terms]] | - | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
UPDATING...<!--
 
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
EventSourceTerm = EventHandling.MonitorChangeEventSource(Variable);
+
NumericTerm = Util.Max(NumericTerm);
 
</syntaxhighlight>
 
</syntaxhighlight>
-->
 
  
 
== Description ==
 
== Description ==
UPDATING...<!--
+
The OTX '''Max''' term is a NumericTerm which returns the max of all its operands.
The OTX '''MonitorChangeEventSource''' term creates an event source that monitors the value of a variable and an event triggers when the value changed. Event queue should start immediately as soon as the event source is created.
 
  
{{Note|The case when a value to a previously uninitialized variable is assigned to count as a change event and make no mistake.}}
+
{{Note|IMPORTANT — The actual return data type of the '''Max''' term depends on the data types of the operands: If one of the operands is Float, all Integer operands are automatically promoted to Float prior to the operation and the returned value is Float. Otherwise, the returned value is Integer.}}
  
{{TermReturnValue| [[Extensions.EventHandling.EventSource|EventSource]] | '''The EventSource''', the changes in the value of a variable monitored.}}
+
{{TermReturnValue| [[Numeric]] | The max of all its operands.}}
  
 
== Properties ==
 
== Properties ==
UPDATING...//
 
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| Variable | - | [[Variable]] | - | [1] | The variable which has to be monitored.}}
+
{{TableRowPropertie2| Numeral | [[Numeric]] | [[Term]] | - | [2..*] | The numeric operands of the Max Term.}}
 
|}
 
|}
-->
 
  
 
== OTL Examples ==
 
== OTL Examples ==
UPDATING...<!--
 
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
Boolean Bool1 = false;
+
Float Float1;
EventHandling.EventSource EventSource1;
 
EventHandling.Event Event1;
 
  
EventSource1 = EventHandling.MonitorChangeEventSource(Bool1);
+
/// Flow
parallel
+
 
{
+
Float1 = Util.Max({0.99, 0.97, 0.93, 0.91, 0.9});
  lane
 
  {
 
      Bool1 = true;
 
  }
 
  lane
 
  {
 
      EventHandling.WaitForEvent({EventSource1}, Event1);
 
  }
 
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>
-->
 
  
 
== See also ==
 
== See also ==
 
[[Extensions.Util.Compare|Compare]] <br/>
 
[[Extensions.Util.Compare|Compare]] <br/>
 
[[Extensions.Util.CopyByteField|CopyByteField]] <br/>
 
[[Extensions.Util.CopyByteField|CopyByteField]] <br/>
 +
[[Extensions.Util.GetRandomNumber|GetRandomNumber]] <br/>
 
[[Extensions.Util.IsInitialized|IsInitialized]] <br/>
 
[[Extensions.Util.IsInitialized|IsInitialized]] <br/>
 
[[Extensions.Util.ListIndexOf|ListIndexOf]] <br/>
 
[[Extensions.Util.ListIndexOf|ListIndexOf]] <br/>

Revision as of 13:46, 4 October 2018

Classification

Name Max
Short Description Gets the max of all its operands.
Class Term
Extension OTX Util extension
Group Util related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

NumericTerm = Util.Max(NumericTerm);

Description

The OTX Max term is a NumericTerm which returns the max of all its operands.

Icons Note.png IMPORTANT — The actual return data type of the Max term depends on the data types of the operands: If one of the operands is Float, all Integer operands are automatically promoted to Float prior to the operation and the returned value is Float. Otherwise, the returned value is Integer.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Numeric The max of all its operands.

Properties

Name Data Type Class Default Cardinality Description
Numeral Numeric Term - [2..*] The numeric operands of the Max Term.

OTL Examples

Float Float1;

/// Flow

Float1 = Util.Max({0.99, 0.97, 0.93, 0.91, 0.9});

See also

Compare
CopyByteField
GetRandomNumber
IsInitialized
ListIndexOf
ListIndexOfAny
ListReverse
ListSort
Max
StringFormat