Guest User

Untitled

a guest
Dec 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import numpy as np
  2. from xtensor_math import mixer, sincos
  3.  
  4. u = np.arange(10, dtype=float)
  5. s,c = sincos(u)
  6.  
  7. m = mixer (0.1)
  8. u = np.ones (10, dtype=float)
  9. print (m(u))
Add Comment
Please, Sign In to add comment