Esempio n. 1
0
def root_exp(x):
    """
    helper for hadamard decomp.
    """
    return jnp.sqrt(exp(x))
Esempio n. 2
0
def bottom(x):
    """
    helper for hadamard decomp.
    """
    return jnp.sqrt(exp_min_1(x) * under_right(x))
Esempio n. 3
0
def in_the_arc(x):
    """
    helper for hadamard decomp.
    """
    return -2 / (jnp.sqrt(3 + jnp.cos(pi * x)))
Esempio n. 4
0
def under_right(x):
    """
    helper for hadamard decomp.
    """
    return 3 + 2 * jnp.sqrt(2) + exp(x)
Esempio n. 5
0
def in_the_arc(x):
    return -2 / (jnp.sqrt(3 + jnp.cos(pi * x)))
Esempio n. 6
0
def bottom(x):
    return jnp.sqrt(exp_min_1(x) * under_right(x))
Esempio n. 7
0
def under_right(x):
    return 3 + 2 * jnp.sqrt(2) + exp(x)
Esempio n. 8
0
def root_exp(x):
    return jnp.sqrt(exp(x))