New() function for Arrays

new instantiates properties in order, leaving the next as undef

Your struct takes

Int, Array{BigFloat}, Array{BigFloat}

So your new must be one of

new()
new(::Int)
new(::Int, ::Array{BigFloat})
new(::Int, ::Array{BigFloat}, ::Array{BigFloat})

Your conversion is attempting to convert ACoeffs to NumStages

4 Likes