Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

min

min( 
n_num1 [ n_num2 ... ] 
)
=> n_result

Description

Returns the minimum of the values passed in. This function requires at least one argument.

Arguments

n_num1

First value to check.

n_num2

Additional values to check.

Value Returned

n_result

Minimum of the values passed in.

Examples

min(3)        
=> 3
min(1 2 3)        
=> 1
min(-1 -2.0 -3)   
=> -3.0

Related Topics

abs

max

numberp

Arithmetic Functions


Return to top
 ⠀
X