|
Contents | Previous | Next | Subchapters |
| Syntax |
elliprf(x, y, z) |
| See Also | elliprd |
+inf
1 / -1/2 -1/2 -1/2
R (x, y, z) = - | (t + x) (t + y) (t + z) dt
f 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, only one of these arguments can be zero.
+inf |t=+inf
1 / -3/2 -1/2 | -1/2
R (x, x, x) = - | (t + x) dt = - (t + x) | = x
f 2 / |
0 |t=0
If you enter
x = double(rand(2, 3))
print elliprf(x, x, x)
print x^(-.5d0)
O-Matrix will print two matrices with the same values.