search for: banana1

Displaying 3 results from an estimated 3 matches for "banana1".

Did you mean: banana
2017 Jun 24
0
replication not done with missing DC?
...r to verify that your domain is properly configured and is currently online." Anyone knows what network address is invalid, what to check or where to look? I also tried to look into the replication issue, but I get the following: root at banana3:/home/joachim# samba-tool drs replicate banana1.samba.lindenberg.one banana3.samba.lindenberg.one dc=samba,dc=lindenberg,dc=one Replicate from banana3.samba.lindenberg.one to banana1.samba.lindenberg.one was successful. root at banana3:/home/joachim# samba-tool drs replicate banana3.samba.lindenberg.one banana1.samba.lindenberg.one dc=samba,dc...
2006 May 08
3
Can you apply effects to elements create in same RJS file?
...''banana3'' say... The second line then tries to highlight the new element. This script fails as the second element doesn''t exist before the script starts running. Is there some way to make this work? If I change the second line to reference an existing element ''banana1'' say, then it highlights it fine. Any suggestions? Cheers Nigel -- Posted via http://www.ruby-forum.com/.
2005 Dec 04
1
Understanding nonlinear optimization and Rosenbrock's banana valley function?
...until the hessian is provided analytically (with R 2.2.0 under Windows XP): nlm(banana, c(-1.2, 1)) # found the minimum in 23 iterations nlminb(c(-1.2, 1), banana)# found the min in 35 iterations Dbanana <- function(x){ c(-400*x[1]*(x[2] - x[1]^2) - 2*(1-x[1]), 200*(x[2] - x[1]^2)) } banana1 <- function(x){ b <- 100*(x[2]-x[1]^2)^2+(1-x[1])^2 attr(b, "gradient") <- Dbanana(x) b } nlm(banana1, c(-1.2, 1)) # solved the problem in 24 iterations nlminb(c(-1.2, 1), banana, Dbanana)# solution in 35 iterations D2banana <- function(x){ a11 <- (2 - 4...