-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathSet.m
More file actions
20 lines (20 loc) · 781 Bytes
/
pathSet.m
File metadata and controls
20 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% -------------------------------------------------------------------------
% pathSet.m -- Sets paths to source
% Copyright (c) 2025 Andreas Michael <andreas.michael@it.uu.se>
%
% All rights reserved. Use of this source code is governed by a
% BSD-style license that can be found in the LICENSE file.
% -------------------------------------------------------------------------
addpath("tests/")
addpath(genpath("src/"))
if isfolder("rbfdiff/")
addpath("rbfdiff")
addpath("rbfdiff/rbfdir")
addpath("rbfdiff/rbfqr1D")
addpath("rbfdiff/rbfqr2D")
addpath("rbfdiff/rbfqr3D")
addpath("rbfdiff/utils")
addpath("rbfdiff/tests")
else
error("rbfdiff not found, make sure to download rbfdir repository: git clone https://github.com/elisabethl/rbfdiff.git")
end