У меня есть список в Python, который по сути является списком списков. Я хотел бы найти минимальное значение в пределах диапазона значений в этом списке (то есть локальный минимум). Прямо сейчас мой код выглядит как
import numpy as np
import matplotlib.pyplot as plt
import os
import pylab as pyl
# create an array from the .txt file. Skip the number of headers of the table so you are left with only numbers in data.
#also each new cross section begins with the line ZONE, comment that out so you are only left wih data points in the array
data = np.genfromtxt('drip2cam1top.txt',comments='ZONE',skip_header=3)
print(data)
print(len(data))
# Generate two vectors x and h from the file. Reshape based on zone I and len(data)/I
#(size of array,#number of points in a line) and then create two vectors
#divide len(data) by I to get first component and then use I (1808 in this case) for second component. #frames, I
x = np.reshape(data[:,0], [144,1808])
h = np.reshape(data[:,2], [144,1808])
#convert numpy array to a list
h_new = h.tolist()[::10] #every 10th step
x_new = x.tolist()[::10]
#using a trick called list comprehension in the next 4 statements,
#it's for constucting an array in one line
#You can look it up or just ignore it and use the results =)
#position of minima (column)
min_columns = [row.index(min(row)) for row in h_new] #position
#position of minima (row) #of frames is range
min_rows = list(range(144))[::10] #simply every row contains a minimum
#x coordinates of minima
min_coords = [x_new[0][index] for index in min_columns]
#values of minima
min_values = [min(row) for row in h_new ]
print(min_values)
print(min_columns)
print(min_rows)
print(min_coords)
#Uncomment the lines below to see the plot
#note the .T in the parameters, it transposes the matrices
#xlim and ylim are chosen based on the data. these can be commented out initially.
plt.xlim([-170,-162])
plt.ylim([-5.0,-4.2])
plt.plot(x[::10].T,h[::10].T)
plt.xlabel('x position (mm)')
plt.ylabel('Surface Height (mm)')
plt.plot(min_coords,min_values, 'ro', ms=3)
plt.title('Horizontal Cross Section of Analog Drip Model ')
plt.show()
Это дает мне общее минимальное значение в каждой строке или «списке». Я хотел найти минимум между значениями -172 и -162 в каждой строке.
Спасибо!