Skip to content

Commit

Permalink
fixing absolute path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrachh committed Apr 1, 2024
1 parent d82a095 commit 866bddc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions chunkie/+chnk/+axissymhelm2d/load_asym_tables.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
function asym_tables = load_asym_tables()
%CHNK.AXISSYMHELM2D.load_asym_tables loads the precomputed tables
% for axissymmetric Helmholtz kernels

load('asym_helm_data.mat','allvs');
p = mfilename('fullpath');
dirname = dir([p ,'.m']).folder;
fname = [dirname '/asym_helm_data.mat'];
load(fname,'allvs');
ncheb = 12;
xcheb = (0:(ncheb-1))/(ncheb-1)*pi;

Expand Down

0 comments on commit 866bddc

Please sign in to comment.