-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiniciar_MCURV.m
26 lines (23 loc) · 1.02 KB
/
iniciar_MCURV.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% ______________________________________________________________________
%| |
%| iniciar_MCURV - Inicia la libreria MCURV |
%| |
%| Area de Estructuras y Geotecnia |
%| Departamento de Ingenieria Civil |
%| Facultad de Ciencias Fisicas y Matematicas |
%| Universidad de Chile |
%|______________________________________________________________________|
MCURV_ver = 'v1.2';
% Agrega las carpetas de la plataforma MCURV al PATH
addpath('mcurv');
addpath('mcurv/base');
addpath('mcurv/lib');
addpath('mcurv/material');
addpath('mcurv/material/concrete');
addpath('mcurv/material/steel');
addpath('mcurv/section');
addpath('mcurv/utils');
% Agrega los test al path
addpath('test');
addpath('test/material');
addpath('test/section');