Standard math functions can take array arguments

# let b be an array

c = sin(b)    
c = arcsin(c) 
c = sinh(b)
# same functions for the cos and tan families

c = b**2.5  # power function
c = log(b)
c = exp(b)
c = sqrt(b)

previousnexttable of contents