-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtests
More file actions
39 lines (35 loc) · 965 Bytes
/
Copy pathtests
File metadata and controls
39 lines (35 loc) · 965 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
#2d на 1d
read_sel2d=reader()
data2d=read_sel2d.read_sel("./2d.sel")
readcart = reader()
data_cart = readcart._read_cart("./Cart.txt")
plt=plot(data2d,data_cart)
plt.plt1d(6)
#2d на 2d
read_sel2d=reader()
data2d=read_sel2d.read_sel("./2d.sel")
readcart = reader()
data_cart = readcart._read_cart("./Cart.txt")
plt=plot(data2d,data_cart)
plt.plt2d(10,1)
#1d
read_sel1d=reader()
data_1d=read_sel1d.read_sel("./1d.sel")
readcart = reader()
data_cart = readcart._read_cart("./Cart.txt")
plt_1d=plot(data_1d,data_cart)
plt_1d.plt1d()
#3d на 2d
read_sel3d=reader()
data_3d=read_sel3d.read_sel("./3d.sel")
readcart = reader()
data_cart = readcart._read_cart("./Cart.txt")
plt_3d_2d=plot(data_3d,data_cart)
plt_3d_2d.plt2d(10,1,2)
#3d на 1d
read_sel3d=reader()
data_3d=read_sel3d.read_sel("./3d.sel")
readcart = reader()
data_cart = readcart._read_cart("./Cart.txt")
plt_3d_1d=plot(data_3d,data_cart)
plt_3d_1d.plt1d(2,2)