Displaying 2 results from an estimated 2 matches for "maclaurin".
Did you mean:
maclaren
2000 Feb 10
0
smbclient: invalid mid from server! ???
Hi,
our backup program regularly invokes smbclient to generate a tar-file
from an NT-Workstation share. What it does is
/usr/samba/bin/smbclient \\\\maclaurin\\maclaurin password -U backup -E -W MATH -d3 -Tc - > maclaurin.tar
Now this is the output:
Client started (version 2.0.6).
resolve_lmhosts: Attempting lmhosts lookup for name maclaurin<0x20>
resolve_hosts: Attempting host lookup for name maclaurin<0x20>
Connecting to 131.234.114.34...
2012 Jul 18
6
taylor expansions with real vectors
Dear list,
I have a big deal concerning the development of a Taylor expansion.
require(Matrix)
e1 <- as.vector(1:5)
e2 <- as.vector(6:10)
in order to obtain all the combinations between these two vectors following
a Taylor expansion (or more simply through a Maclaurin series) for real
numbers.
We have f(x) = f(0) + f'(0)(x-0) + f''(0)(x-0)^2/2! + ? + f^(k)(0)(x-0)^k/k!
with
f(x) = e1 + e2 for Taylor expansion (r = 1)
+ 1/2!*e1^2 + 1/2!*e2^2 + 1/2!*e1*e2 for Taylor expansion (r = 2)
excluding e2*e1
+ 1/3!*e1^3 + 1/3!*e1^2*e2 + 1/3...