Skip to content

Commit a5217c3

Browse files
p3jaworsstudywolf
authored andcommitted
Minimal database file added for running examples
1 parent 596471c commit a5217c3

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

abr_analyze.h5

24.8 MB
Binary file not shown.

abr_analyze/utils/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@
22
from .data_processor import DataProcessor
33
from .data_visualizer import DataVisualizer
44

5-
from .trajectory_error_vis import TrajectoryErrorVis
6-
75
from .draw_data import DrawData
86
from .draw_2d_data import Draw2dData
97
from .draw_3d_data import Draw3dData
108
from .draw_arm import DrawArm
119
from .draw_cells import DrawCells
1210

13-
from .trajectory_error_proc import TrajectoryErrorProc
11+
from .make_gif import MakeGif
1412

13+
# from .trajectory_error_proc import TrajectoryErrorProc
14+
# from .trajectory_error_vis import TrajectoryErrorVis
1515
# from .target import Target
1616
# from .proc_error_to_ideal import PathErrorToIdeal
17-
#from .plot_error import PlotError
17+
# from .plot_error import PlotError
1818
# from .convert_data import ConvertData
1919
# import abr_control.utils.email_results
2020
# from .plot_learning_profile import PlotLearningProfile
2121
# import abr_control.utils.plot_velocity_profile
2222
# import abr_control.utils.plot_torque_profile
23-
from .make_gif import MakeGif

examples/plot_grid.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
cells.add_cell(
6060
cell=cell2,
6161
function=draw_arm,
62-
save_locations=['%s/run%03d'%(test,49)]
62+
save_locations=['%s/run%03d'%(test,9)]
6363
)
6464
cells.add_cell(
6565
cell=cell2,
6666
function=draw_3d,
67-
save_locations=['%s/run%03d'%(baseline,49)],
67+
save_locations=['%s/run%03d'%(baseline,9)],
6868
parameters=['ee_xyz']
6969
)
7070
# if the same parameters are to be plotted from the same database, the save
@@ -75,7 +75,7 @@
7575
function=draw_2d,
7676
save_locations=[
7777
'%s/run%03d'%(test,0),
78-
'%s/run%03d'%(test,49)
78+
'%s/run%03d'%(test,9)
7979
],
8080
parameters=['q'],
8181
n_rows=3,
@@ -99,8 +99,8 @@
9999
cell=cell5,
100100
function=draw_2d,
101101
save_locations=[
102-
'%s/run%03d'%(test,49),
103-
'%s/run%03d'%(baseline,49)
102+
'%s/run%03d'%(test,9),
103+
'%s/run%03d'%(baseline,9)
104104
],
105105
parameters=['u_base'],
106106
)

0 commit comments

Comments
 (0)