Operators

flopt.Sum(x)

param x:

flopt.Prod(x)

param x:

flopt.Value(x)

Convert operation to number from variable and expression

flopt.sqrt(x)

squared root operation

flopt.exp(x)

exponential operation

flopt.cos(x)

cosine operation

flopt.sin(x)

sine operation

flopt.tan(x)

tangent operation

flopt.log(x)

logarithmic operation

flopt.abs(x)

absolute operation

flopt.floor(x)

floor operation

flopt.ceil(x)

ceil operation

class flopt.Sum(x)[source]
Parameters:

x (iterator of varElement) –

Return type:

all sum of x

class flopt.Prod(x)[source]
Parameters:

x (iterator of varElement) –

Return type:

all product of x

class flopt.exp(x)[source]

exponential operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.cos(x)[source]

cosine operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.sin(x)[source]

sine operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.tan(x)[source]

tangent operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.log(x)[source]

logarithmic operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.abs(x)[source]

absolute operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.floor(x)[source]

floor operation

Parameters:

x (array or generator of expressions or variables) –

class flopt.ceil(x)[source]

ceil operation

Parameters:

x (array or generator of expressions or variables) –