- 12 Jul, 2018 1 commit
-
-
Stéphane Adjemian authored
-
- 09 Jun, 2018 1 commit
-
-
Stéphane Adjemian authored
-
- 21 Feb, 2018 1 commit
-
-
Stéphane Adjemian authored
-
- 20 Feb, 2018 3 commits
-
-
Houtan Bastani authored
-
Houtan Bastani authored
-
Houtan Bastani authored
-
- 15 Feb, 2018 1 commit
-
-
Stéphane Adjemian authored
-
- 29 Jan, 2018 1 commit
-
-
Houtan Bastani authored
-
- 14 Nov, 2017 1 commit
-
-
Stéphane Adjemian authored
The input arguments (concatenated objects) should not be modified by the overloaded method. Use a copy.
-
- 12 Nov, 2017 1 commit
-
-
Stéphane Adjemian authored
Created instead a new function dseries2struct, which can be called as: >> o = dseries(randn(10,2)); >> s = o.struct(); Also + Added a routine to create a dseries object from a structure (if all required field are available). + Added the possibility to instantiate a dseries object from a structure.
-
- 10 Nov, 2017 2 commits
-
-
Houtan Bastani authored
-
Houtan Bastani authored
-
- 08 Nov, 2017 1 commit
-
-
Stéphane Adjemian authored
-
- 07 Nov, 2017 5 commits
-
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
-
Stéphane Adjemian authored
-
- 14 Oct, 2017 1 commit
-
-
Stéphane Adjemian authored
-
- 11 Oct, 2017 2 commits
-
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
- 10 Oct, 2017 1 commit
-
-
Stéphane Adjemian authored
-
- 04 Oct, 2017 1 commit
-
-
Stéphane Adjemian authored
-
- 23 Sep, 2017 1 commit
-
-
Stéphane Adjemian authored
-
- 21 Sep, 2017 6 commits
-
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
Can initialise the trend in the one sided HP filter with the trend estimated with the standard HP filter.
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
- New class member tags - Member tags is a structure, initialized to empty. - Each user-defined field of this structure must be a vobs(o)*1 cell array (each element is associated to a variable). - To add a new tag name: >> o.tag('type') - To associate a tag value to a variable: >> o.tag('type', 'Consumption', 'Flow') the first argument is the tag name, the second argument is the name of the variable, the last argument is the value of the tag.
-
- 20 Sep, 2017 3 commits
-
-
Stéphane Adjemian authored
New ops class member.
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
Use mat instead of csv (tex and new ops members are not saved ion csv files).
-
- 19 Sep, 2017 2 commits
-
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
This member keeps track of the transformations and operations on the variables. The name of the variables is now constant.
-
- 01 Sep, 2017 5 commits
-
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
-
Stéphane Adjemian authored
Otherwise, some strings may be interpreted as regular expression. The correct syntax for selecting variables with regular expression is: o{'[\w*_US]'} while o{'\w*_US'} is not correct. The user must explicitely state that s/he wants to select variables with regular expression by beginning and closing the string with square brackets. When a wildcard parameter is detected, the string is converted to a regular expression by adding opening and closing square brackets and replacing the wildcard parameter by \w*. Consequently, in the last example, if * is the wildcard parameter, string '\w*_US' would be converted into '[\w\w*_US]'. That is the reason why this commit changes the wildcard parameter to ~ (which is not used in matlab's regular expressions).
-