by aaronb2017 » Fri May 05, 2017 8:21 pm
I see. Thanks. My prior code was creating the transition matrix, hx, so that the state variables would be in declaration order.
hx=oo_.dr.ghx(oo_.dr.inv_order_var(M_.state_var),oo_.dr.inv_order_var(M_.state_var-20));
I've tried switching to:
hx=oo_.dr.ghx(oo_.dr.inv_order_var(oo_.dr.kstate),oo_.dr.inv_order_var(oo_.dr.kstate-20));
Basically, I'm trying to get the rows and columns of hx so that they are in declaration order. Would that already be the case with the new indexing?