-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmakefile
More file actions
executable file
·39 lines (26 loc) · 998 Bytes
/
makefile
File metadata and controls
executable file
·39 lines (26 loc) · 998 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
# file : Makefile (UNIX)
#
# You can invoke this Makefile using
# make -f Makefile MATLABROOT=[directory where MATLAB is installed]
#
# If you do not want to specify the MATLABROOT at the gmake command line
# every single time, you can define it by uncommenting the line below
# and assigning the correct root of MATLAB (with no trailing '/') on
# the right hand side.
#
MATLABROOT := /data/apps/MATLAB/R2019a/
#
#
# Defaults
#
MEX=$(MATLABROOT)/bin/mex
MCC=$(MATLABROOT)/bin/mcc
# The following are the definitions for each target individually.
applymodel: applymodel.m
$(MCC) -d './' -R -nodisplay -R '-logfile,./matlab.log' -S -v -m $^ $(CTF_ARCHIVE) -o $@
tags:
ctags -R *
CTF_ARCHIVE=$(addprefix -a ,$(SOURCE_FILES))
SOURCE_FILES = dicePixelClassification3dLayer.m
#$(MATLABROOT)/toolbox/nnet/
#activations.m activationsMIMO.m calculateActivations.m classifyAndUpdateState.m classify.m DAGNetwork.m predictAndUpdateState.m predict.m predictMIMO.m predictRNN.m