Skip to content

Commit e156fe1

Browse files
committed
fix a typo
1 parent c1a855d commit e156fe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Localization/extended_kalman_filter/extended_kalman_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def main():
193193

194194
if show_animation:
195195
plt.cla()
196-
plt.plot(hz[:, 0], hz[:, 1], ".g")
196+
plt.plot(hz[0, :], hz[1, :], ".g")
197197
plt.plot(hxTrue[0, :].flatten(),
198198
hxTrue[1, :].flatten(), "-b")
199199
plt.plot(hxDR[0, :].flatten(),

tests/test_rrt_star.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"/../PathPlanning/RRTstar/")
66

77
try:
8-
print(sys.path)
98
import rrt_star as m
109
except:
1110
raise
@@ -24,3 +23,4 @@ def test1(self):
2423
if __name__ == '__main__':
2524
test = Test()
2625
test.test1()
26+
print(aa)

0 commit comments

Comments
 (0)