質問編集履歴

1

質問による修正

2019/11/11 06:38

投稿

huuuuuuu
huuuuuuu

スコア8

test CHANGED
File without changes
test CHANGED
@@ -42,7 +42,17 @@
42
42
 
43
43
  これとは別に、csvに格納されているそれぞれのⅹ,yと設定した点の2点間距離を求めるためにはどうしたらよいでしょうか。
44
44
 
45
- x_y.csv (x,y)(4,3)(7,8)(5,9)
45
+ x,y
46
+
47
+ 4,3
48
+
49
+ 7,8
50
+
51
+ 5,9
52
+
53
+
54
+
55
+
46
56
 
47
57
  設定した点(x1,y1)(2,2)
48
58
 
@@ -86,9 +96,17 @@
86
96
 
87
97
  エラーメッセージ
88
98
 
89
- operands could not be broadcast together with shapes (2,) (3,)
90
99
 
91
100
 
101
+ Message=operands could not be broadcast together with shapes (2,) (3,)
102
+
103
+ Source=C:\Users\bosailab\source\repos\point_distance\point_distance\point_distance.py
104
+
105
+ スタック トレース:
106
+
107
+ File "C:\Users\bosailab\source\repos\point_distance\point_distance\point_distance.py", line 18, in <module>
108
+
109
+ u = b - a
92
110
 
93
111
 
94
112