-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathbuild.sh
More file actions
32 lines (29 loc) · 663 Bytes
/
build.sh
File metadata and controls
32 lines (29 loc) · 663 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
rm -rf PhysicalModelingInMatlab
mkdir PhysicalModelingInMatlab
cp LICENSE README.md PhysicalModelingInMatlab
CODE="chap02/myscript.m \
chap02/fibonacci1.m \
chap03/bike_loop.m \
chap03/sequence.m \
chap03/series.m \
chap03/fibonacci2.m \
chap04/fibonacci4.m \
chap04/lorenz.m \
chap04/logmap.m \
chap05/myfunc.m \
chap06/find_triples.m \
chap07/cheby6.m \
chap08/exists.m \
chap09/euler.m \
chap09/rats.m \
chap10/lotka.m \
chap10/lorenz.m \
chap11/skydiver.m \
chap12/baseball.m \
chap13/baseball3.m \
chap14/binary.m \
chap15/odeplot.m"
cd code
rsync -aR ${CODE} ../PhysicalModelingInMatlab
cd ..
zip -r PhysicalModelingInMatlab.zip PhysicalModelingInMatlab