Home
last modified time | relevance | path

Searched refs:olslist (Results 1 – 3 of 3) sorted by relevance

/dports/math/gretl/gretl-2021d/lib/src/
H A Ddiscrete.c3789 int *olslist = NULL; in duration_precheck() local
3813 olslist = gretl_list_copy(list); in duration_precheck()
3814 if (olslist == NULL) { in duration_precheck()
3819 olslist[l0 - 1] = censvar; in duration_precheck()
3820 olslist[0] -= 1; in duration_precheck()
3830 if (olslist != NULL) { in duration_precheck()
3831 *pmod = lsq(olslist, dset, OLS, OPT_A); in duration_precheck()
3839 free(olslist); in duration_precheck()
H A Dgretl_panel.c3895 int *olslist = NULL; in real_panel_model() local
3926 err = add_time_dummies_to_list(list, dset, &olslist); in real_panel_model()
3929 olslist = gretl_list_copy(list); in real_panel_model()
3930 if (olslist == NULL) { in real_panel_model()
3940 mod = lsq(olslist, dset, OLS, ols_opt); in real_panel_model()
3950 printlist(olslist, "olslist"); in real_panel_model()
3954 free(olslist); in real_panel_model()
H A Dgraphing.c4907 int olslist[5]; in maybe_get_surface() local
4910 olslist[0] = 4; in maybe_get_surface()
4911 olslist[1] = list[3]; in maybe_get_surface()
4912 olslist[2] = 0; in maybe_get_surface()
4913 olslist[3] = list[2]; in maybe_get_surface()
4914 olslist[4] = list[1]; in maybe_get_surface()
4919 smod = lsq(olslist, dset, OLS, OPT_A); in maybe_get_surface()