Skip to content
Snippets Groups Projects
Verified Commit 15724ee1 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Removed `stable` option.

This is not necessary since ordering in INFO should not matter, also
this option is not available in Octave 5.x.
parent 7c650ed1
No related branches found
No related tags found
No related merge requests found
Pipeline #4596 failed
...@@ -31,7 +31,7 @@ function o = projection(o, info, periods) % --*-- Unitary tests --*-- ...@@ -31,7 +31,7 @@ function o = projection(o, info, periods) % --*-- Unitary tests --*--
% [4] This projection routine only deals with exponential trends. % [4] This projection routine only deals with exponential trends.
% Fetch useful lines in info % Fetch useful lines in info
[~, ~, i2] = intersect(o.name, info(:,1), 'stable'); [~, ~, i2] = intersect(o.name, info(:,1));
INFO = info(i2,:); INFO = info(i2,:);
% Change number of periods in dseries object o % Change number of periods in dseries object o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment