G0025 : Undefined symbol: 'dynargsGet' [rals_lm_breaks.src, line 70]
G0025 : Undefined symbol: '_checkfordate' [rals_lm_breaks.src, line 72]
G0025 : Undefined symbol: '_get_cv_LMrsf' [rals_lm_breaks.src, line 258]
G0025 : Undefined symbol: '_printHeaderTSPDLIB' [rals_lm_breaks.src, line 267]
G0025 : Undefined symbol: '_printStatsTable' [rals_lm_breaks.src, line 294]
G0025 : Undefined symbol: '_printBreaks' [rals_lm_breaks.src, line 298]
G0025 : Undefined symbol: '_printConclusion' [rals_lm_breaks.src, line 303]
2 Answers
0
Those undefined
symbols are all functions that are defined in the TSPDLIB library. This suggests that the TSPDLIB library is either not properly installed and/or is not properly loaded.
Try entering the following on the command line:
library tspdlib
Do you get an error?
0
new;
cls;
library tspdlib;
// Load date file
y = loadd(__FILE_DIR $+ "ts_examples.csv", "Y + date($Date, '%b-%y')");
/*
**model
*/
model=2;
/*
**Number of breaks
*/
nbreaks = 2 ;
{ LM_min, tb, p, cv_lm, RALS_lm, p2, cv_ralslm } = RALSLM_breaks(y, model, nbreaks);
Your Answer
2 Answers
Those undefined
symbols are all functions that are defined in the TSPDLIB library. This suggests that the TSPDLIB library is either not properly installed and/or is not properly loaded.
Try entering the following on the command line:
library tspdlib
Do you get an error?
new;
cls;
library tspdlib;
// Load date file
y = loadd(__FILE_DIR $+ "ts_examples.csv", "Y + date($Date, '%b-%y')");
/*
**model
*/
model=2;
/*
**Number of breaks
*/
nbreaks = 2 ;
{ LM_min, tb, p, cv_lm, RALS_lm, p2, cv_ralslm } = RALSLM_breaks(y, model, nbreaks);