Displaying 7 results from an estimated 7 matches for "sigmode".
Did you mean:
sigmod
2009 Dec 14
2
R square in NLS-urgent help
Hello
I need one urgent help
I am trying to fit the Sigmod curve of logistic growth model using NLS
estimation.
But i do not get the R square value in that even after getting the "Summary"
In that case how to compare the fit for 3 models and find which one is
better fit??
How to get this R Square value when using NLS estimation?
Thanks
Ruchita
[[alternative HTML version deleted]]
2020 Mar 28
0
[klibc:update-dash] dash: eval: Add vfork support
...if (iflag || minusc || sflag == 0)
@@ -255,7 +258,8 @@ setsignal(int signo)
default:
act.sa_handler = SIG_DFL;
}
- *t = action;
+ if (!lvforked)
+ *t = action;
act.sa_flags = 0;
sigfillset(&act.sa_mask);
sigaction(signo, &act, 0);
@@ -271,7 +275,8 @@ ignoresig(int signo)
if (sigmode[signo - 1] != S_IGN && sigmode[signo - 1] != S_HARD_IGN) {
signal(signo, SIG_IGN);
}
- sigmode[signo - 1] = S_HARD_IGN;
+ if (!vforked)
+ sigmode[signo - 1] = S_HARD_IGN;
}
@@ -283,6 +288,9 @@ ignoresig(int signo)
void
onsig(int signo)
{
+ if (vforked)
+ return;
+
if (signo...
2019 Jan 25
0
[klibc:update-dash] trap: Globally rename pendingsigs to pending_sig
...efault:
- if (errno == EINTR && !pendingsigs)
+ if (errno == EINTR && !pending_sig)
continue;
/* fall through */
case 0:
diff --git a/usr/dash/trap.c b/usr/dash/trap.c
index 89ceff4f..a3aeb33e 100644
--- a/usr/dash/trap.c
+++ b/usr/dash/trap.c
@@ -74,7 +74,7 @@ char sigmode[NSIG - 1];
/* indicates specified signal received */
static char gotsig[NSIG - 1];
/* last pending signal */
-volatile sig_atomic_t pendingsigs;
+volatile sig_atomic_t pending_sig;
/* received SIGCHLD */
int gotsigchld;
@@ -290,7 +290,7 @@ onsig(int signo)
}
gotsig[signo - 1] = 1;
- pe...
2020 Mar 28
0
[klibc:update-dash] dash: trap: Globally rename pendingsigs to pending_sig
...efault:
- if (errno == EINTR && !pendingsigs)
+ if (errno == EINTR && !pending_sig)
continue;
/* fall through */
case 0:
diff --git a/usr/dash/trap.c b/usr/dash/trap.c
index 89ceff4f..a3aeb33e 100644
--- a/usr/dash/trap.c
+++ b/usr/dash/trap.c
@@ -74,7 +74,7 @@ char sigmode[NSIG - 1];
/* indicates specified signal received */
static char gotsig[NSIG - 1];
/* last pending signal */
-volatile sig_atomic_t pendingsigs;
+volatile sig_atomic_t pending_sig;
/* received SIGCHLD */
int gotsigchld;
@@ -290,7 +290,7 @@ onsig(int signo)
}
gotsig[signo - 1] = 1;
- pe...
2003 Oct 30
0
spatial outliers
Hello everybody,
I have some questions about identifying spatial clustering in
spatial autocorrelated data. It seems that there are some
problems with the usual methods for cluster identification
because they don?t take into consideration the spatial
autocorrelation of data.
I am wondering if there is any R procedure / packages which
implement the OPTICS method? I am referring here to
2019 Jan 25
0
[klibc:update-dash] input: Remove HETIO
...dif
for (;;) {
int skip;
diff --git a/usr/dash/trap.c b/usr/dash/trap.c
index b8470437..a6997d4f 100644
--- a/usr/dash/trap.c
+++ b/usr/dash/trap.c
@@ -52,10 +52,6 @@
#include "trap.h"
#include "mystring.h"
-#ifdef HETIO
-#include "hetio.h"
-#endif
-
/*
* Sigmode records the current value of the signal handlers for the various
* modes. A value of zero means that the current handler is not known.
@@ -381,9 +377,6 @@ exitshell(void)
struct jmploc loc;
char *p;
-#ifdef HETIO
- hetio_reset_term();
-#endif
savestatus = exitstatus;
TRACE(("pid %...
2020 Mar 28
0
[klibc:update-dash] dash: input: Remove HETIO
...dif
for (;;) {
int skip;
diff --git a/usr/dash/trap.c b/usr/dash/trap.c
index b8470437..a6997d4f 100644
--- a/usr/dash/trap.c
+++ b/usr/dash/trap.c
@@ -52,10 +52,6 @@
#include "trap.h"
#include "mystring.h"
-#ifdef HETIO
-#include "hetio.h"
-#endif
-
/*
* Sigmode records the current value of the signal handlers for the various
* modes. A value of zero means that the current handler is not known.
@@ -381,9 +377,6 @@ exitshell(void)
struct jmploc loc;
char *p;
-#ifdef HETIO
- hetio_reset_term();
-#endif
savestatus = exitstatus;
TRACE(("pid %...