Skip to content

Square Root Tile#


alt text A Tile used to return the square root of a number.

Description#

Description

  • Returns the result of the sqrt( X ) operation
  • X default to 0 if not wired, or a conversion to float could not be made

Inputs#

X#

Info
  • Type
    Numeric value defaults to 0
    
    Accepted types: Integer, Float, String
    
  • Usage
    Wire any tile that returns a numeric or string value that does not include letters or special characters
    
    Any error will deafult the value to 0
    

Output#

sqrt( X )#

Info
  • Return
    Float defaults to 0
    
  • Usage
    Will return the result of the operation
    

Real Signature#

Signature

  • A plain language description of the function associated with the tile
    def SquareRoot(x):
        return math.sqrt(0)