From 15724ee1bc6ec5cce2d1ffc9d3b66b1afc3e832e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?=
 <stepan@adjemian.eu>
Date: Fri, 18 Dec 2020 21:17:58 +0100
Subject: [PATCH] Removed `stable` option.

This is not necessary since ordering in INFO should not matter, also
this option is not available in Octave 5.x.
---
 src/@dseries/projection.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/@dseries/projection.m b/src/@dseries/projection.m
index 6f42b75..8a6c726 100644
--- a/src/@dseries/projection.m
+++ b/src/@dseries/projection.m
@@ -31,7 +31,7 @@ function o = projection(o, info, periods)  % --*-- Unitary tests --*--
 % [4] This projection routine only deals with exponential trends.
 
 % Fetch useful lines in info
-[~, ~, i2] = intersect(o.name, info(:,1), 'stable');
+[~, ~, i2] = intersect(o.name, info(:,1));
 INFO = info(i2,:);
 
 % Change number of periods in dseries object o
-- 
GitLab