search for: patn

Displaying 2 results from an estimated 2 matches for "patn".

Did you mean: path
2006 Nov 17
2
SSH on port 6010
hi evryone, the command netstat -patn | grep LISTEN shows the next line tcp 0 0 ::1:6010 :::* LISTEN 5195/1 and the command ps ax|grep 5195 shows 5195 ? Ss 0:00 sshd: root at pts/1 i was thinking if this is normal when i connect to the server through ssh, but in another server...
2006 Aug 15
0
Help with workaround for: Function '`[`' is not in thederivatives table
...turn them back again. This is not easy to do in complete generality, but if you are only talking about singly subscripted arrays, you can get somewhere. Here is an outline of what I mean. > Ident <- "([A-z][A-z0-9_.]*)" > Subsc <- "([A-z][A-z0-9_.]*|[0-9]+)" > patn <- paste(Ident, "\\[", Subsc, "\\]", sep = "") > repl <- "\\1__\\2" > E <- expression(A[1] * exp(A[2]*X) + A[3]) > Es <- deparse(E[[1]]) > Es [1] "A[1] * exp(A[2] * X) + A[3]" > Ess <- gsub(patn, repl, Es) > Ess [1]...