Calculates the Butcher Tableau for a given order.
This class calculates the transformation matrix, T, and its respective inverse. (However small errors may exist in the method used)
import butchertableau as bt
order = 7
X = bt.butcher(order, 15)
A, B, C = X.radau()
Ainv = X.inv(A)
T, TI = X.Tmat(Ainv)
P = X.P(C)
print(P)
pip install butchertableau