Changeset 15750
- Timestamp:
- 08/08/13 09:41:32 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/startup.m
r14305 r15750 16 16 else 17 17 ISSM_DIR=getenv('ISSM_DIR_WIN'); 18 %ISSM_DIR='';19 18 end 20 19 if (isempty(ISSM_DIR)), … … 27 26 28 27 %ISSM path 29 addpath([ISSM_DIR '/src/m/os/']); %loads recursivepath 30 addpath([ISSM_DIR '/bin']); 31 addpath([ISSM_DIR '/lib']); 28 addpath([ISSM_DIR '/src/m/os/']); %load recursivepath 29 addpath([ISSM_DIR '/lib']); %load mex 32 30 addpath(recursivepath([ISSM_DIR '/src/m'])); 33 31 addpath(recursivepath([ISSM_DIR '/externalpackages/scotch'])); … … 37 35 addpath(recursivepath([ISSM_DIR '/externalpackages/googleearthtoolbox'])); 38 36 addpath(recursivepath([ISSM_DIR '/externalpackages/howatmask'])); 39 addpath(recursivepath([ISSM_DIR '/externalpackages/cm_and_cb_utilities']));40 37 addpath(recursivepath([ISSM_DIR '/externalpackages/dem'])); 41 42 38 clear ISSM_DIR; 43 39 … … 50 46 end 51 47 52 % deal with Matlab bug (on Linux, not WinXP) -- unless53 % the class has been called, "empty" method can not be found54 if ~ispc,55 normal_uncertain;56 continuous_design;57 continuous_state;58 linear_inequality_constraint;59 linear_equality_constraint;60 response_function;61 objective_function;62 least_squares_term;63 nonlinear_inequality_constraint;64 nonlinear_equality_constraint;65 clear ans;66 end67 68 48 %disable matlab bell! 69 49 beep off; 70 71 % no warning if we try to plot while in nojvm (will not be supported in future releases)72 warning off MATLAB:HandleGraphics:noJVM
Note:
See TracChangeset
for help on using the changeset viewer.