Displaying 2 results from an estimated 2 matches for "modspec".
Did you mean:
mod_spec
2012 Aug 10
1
Lavaan: Immediate non-positive definite matrix
Hi,
I recently tried to estimate a linear unconditional latent growth curve on
7 repeated measures using lavaan (most recent version):
modspec='
alpha =~ 1*read_g0 + 1*read_g1 + 1*read_g2 + 1*read_g3 + 1*read_g4 +
1*read_g5 + 1*read_g6
beta =~ 0*read_g0 + 1*read_g1 + 2*read_g2 + 3*read_g3 + 4*read_g4 +
5*read_g5 + 6*read_g6
'
gmod=lavaan(modspec, data=math, meanstructure=T, int.ov.free=F, int.lv.free=
T, auto.var=T, auto.cov.l...
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...;local_env_mods[i].name);
+ xfree(options->local_env_mods[i].value);
+ }
+ if (options->num_local_env_mods > 0) {
+ xfree(options->local_env_mods);
+ options->num_local_env_mods = 0;
+ options->local_env_mods = NULL;
+ }
+}
+
+static int
+parse_env_mod(EnvMod *mod, const char *modspec);
+
+/*
* Returns the number of the token pointed to by cp or oBadOption.
*/
@@ -359,6 +399,7 @@ process_config_line(Options *options, const char *host,
long long orig, val64;
size_t len;
Forward fwd;
+ EnvMod mod;
/* Strip trailing whitespace */
for (len = strlen(line) - 1; len &...