|
Contents | Previous | Next | Subchapters |
| Syntax |
elliprj(x, y, z, p) |
| See Also | elliprf , elliprd |
+inf
3 / -1/2 -1/2 -1/2 -1
R (x, y, z, p) = - | (t + x) (t + y) (t + z) (t + p) dt
j 2 /
0
where the arguments x, y and z
are real or double-precision matrices with non-negative elements.
If any of these arguments is not a scalar,
it must have the same dimension as the other arguments that
are not scalars.
For each element, z cannot be zero
and only one of x and y can be zero.
+inf |t=+inf
3 / -5/2 -3/2 | -3/2
R (x, x, x, x) = - | (t + x) dt = - (t + x) | = x
j 2 / |
0 |t=0
If you enter
x = double(rand(2, 3))
print elliprj(x, x, x, x)
print x^(-1.5d0)
O-Matrix will print two matrices with the same values.