Skip to content

Commit f61d68b

Browse files
committed
added Project.toml
1 parent 23b7529 commit f61d68b

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

Project.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "OpenMPIData"
2+
uuid = "23f492f2-76ae-56df-892e-e25cea322c51"
3+
4+
[deps]
5+
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
6+
MPIReco = "e4246700-6248-511e-8146-a1d1f47669d2"
7+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
8+
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
9+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[compat]
13+
julia = "≥ 1.0.0"

REQUIRE

-8
This file was deleted.

examples/visualization.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PyPlot.rc("font", family="serif")
44
PyPlot.rc("text", usetex=true)
55

66
function showMIPs(c; fignum=1, filename=nothing)
7-
cAbs = abs.(data(c))
7+
cAbs = abs.(arraydata(c))
88
cxy = maximum(cAbs,dims=3)[:,:,1]
99
cxz = maximum(cAbs,dims=2)[:,1,:]
1010
cyz = maximum(cAbs,dims=1)[1,:,:]
@@ -28,7 +28,7 @@ function showMIPs(c; fignum=1, filename=nothing)
2828
end
2929
end
3030
function showSlices(c, slice; fignum=1, filename=nothing)
31-
cAbs = abs.(data(c))
31+
cAbs = abs.(arraydata(c))
3232
x=slice[1]
3333
y=slice[2]
3434
z=slice[3]

0 commit comments

Comments
 (0)