Round towards nearest odd value
Y = odd(X)
real array to be rounded
real array with same sizes as X. The nearest odd values
odd rounds each element of X towards the nearest odd integer value. If an element of X is even, ODD adds +1 to this value.
X = [1.3 2.08 -3.4 90.43]; Y = odd(X)