How to implement dynamic parameter estimation with missing data in Gekko?
问题 Going back and forth through the documentation, I was able to set-up a dynamic parameter estimation in Gekko. Here's the code, with measurement values shown below (the file is named MeasuredAlgebrProductionRate_30min_18h.csv on my system, and uses ; as separator): import numpy as np import matplotlib.pyplot as plt from gekko import GEKKO #%% Read measurement data from CSV file t_x_q_obs = np.genfromtxt('MeasuredAlgebrProductionRate_30min_18h.csv', delimiter=';') #t_obs, x_obs, q_obs = t_xq