Hi, I would like to share the solution for my use case with you. I needed the Vandermonde-ish matrix to implement another method in GeoStats.jl <https://github.com/juliohm/GeoStats.jl>
The multinom_exp() <https://github.com/juliohm/GeoStats.jl/blob/master/src/utils.jl#L55> returns the exponents in the multinomial expansion without expression generation. I then call it inside unikrig() <https://github.com/juliohm/GeoStats.jl/blob/master/src/kriging.jl#L116> to generate the matrix F. Questions: 1. Any interest in adding multinom_exp() to Base? 2. Am I using the Julia doc system correctly? I can retrieve the doc strings by typing '?' followed by the name of the function in the Julia prompt, but not with help(funcname). Thank you all, -Júlio
