Esempio n. 1
0
 def f(x):
   pointwise = math_ops.sin(x) * math_ops.tan(x)
   return math_ops.reduce_prod(
       pointwise + math_ops.reduce_sum(pointwise), axis=1)
Esempio n. 2
0
 def _quantile(self, p):
   return self.loc + self.scale * math_ops.tan(np.pi * (p - 0.5))
Esempio n. 3
0
 def _quantile(self, p):
     return self.loc + self.scale * math_ops.tan(np.pi * (p - 0.5))
Esempio n. 4
0
 def f(x):
     return math_ops.reduce_sum(math_ops.sin(x) * math_ops.tan(x),
                                axis=1)