Closedown
This commit is contained in:
@@ -11,14 +11,14 @@ data = scienta.data.take()
|
||||
|
||||
#Integrate and plot
|
||||
|
||||
(width,hight) = scienta.getImageSize().tolist()
|
||||
list = []
|
||||
(width,height) = scienta.getImageSize().tolist()
|
||||
integtation = []
|
||||
for i in range(width):
|
||||
p=0.0
|
||||
for j in range(height):
|
||||
p=p+data[j*width+i]
|
||||
list.append(p)
|
||||
plot(list)
|
||||
integtation.append(p)
|
||||
plot(integtation)
|
||||
|
||||
|
||||
#data=scienta.data.take()
|
||||
|
||||
Reference in New Issue
Block a user