You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In /NuMAD/examples/runIEC/IECLoadsAnalysis.m, Line 14 addNumadPaths; % Establish paths
The addNumadPaths script doesn't add the base repo to the matlab path, so the subsequent call in IECLoadsAnalysis.m, Line 19 IEC = IECDef(inputFile);
Will fail to run, because it is not in the matlab path.
A quick solution was found by adding the following to line 25 of addNumadPaths.m addpath(genpath(pwd));
The text was updated successfully, but these errors were encountered:
In /NuMAD/examples/runIEC/IECLoadsAnalysis.m, Line 14
addNumadPaths; % Establish paths
The addNumadPaths script doesn't add the base repo to the matlab path, so the subsequent call in IECLoadsAnalysis.m, Line 19
IEC = IECDef(inputFile);
Will fail to run, because it is not in the matlab path.
A quick solution was found by adding the following to line 25 of addNumadPaths.m
addpath(genpath(pwd));
The text was updated successfully, but these errors were encountered: