From 6d5ecc6dc720c18d7ce032a29f56b5d412153e05 Mon Sep 17 00:00:00 2001 From: Elian Dib <elian.dib@inria.fr> Date: Mon, 29 Jul 2019 13:24:58 +0200 Subject: [PATCH] Fixed completion by changing package LRTC to folder LRTC --- .gitmodules | 2 +- +LRTC => LRTC | 0 complete.m | 4 ++++ 3 files changed, 5 insertions(+), 1 deletion(-) rename +LRTC => LRTC (100%) diff --git a/.gitmodules b/.gitmodules index bdb0f96..abbd236 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "+LRTC"] path = +LRTC - url = git@gitlab.inria.fr:edib/lrtc.git + url = git@gitlab.inria.fr:edib/lrtc.git \ No newline at end of file diff --git a/+LRTC b/LRTC similarity index 100% rename from +LRTC rename to LRTC diff --git a/complete.m b/complete.m index ec31839..4f433c2 100644 --- a/complete.m +++ b/complete.m @@ -2,6 +2,10 @@ function [M,Mask] = complete(M,varargin) %COMPLETE Summary of this function goes here % Detailed explanation goes here +Dir = mfilename('fullpath'); +Dir = fileparts(Dir); +addpath(genpath(fullfile(Dir,'LRTC'))); + p = inputParser; p.addOptional('Method', 'rank', @ischar); p.parse(varargin{:}); -- GitLab