Skip to content

Functions

mini(x, y)

Take the max between two numbers

Parameters

x: float – Description of parameter x.

y: float – Description of parameter y.

Returns

float – Description of returned object.

Source Code
1
2
3
def mini(x, y):

    return np.min(x, y)

mini2peutetre(x, y)

Take the max between two numbers

Parameters

x: float – Description of parameter x.

y: float – Description of parameter y.

Returns

float – Description of returned object.

Source Code
1
2
3
def mini2peutetre(x, y):

    return np.min(x, y)