On Tuesday, 24 March 2015 20:25:48 UTC+1, Christopher Fisher wrote: > > Thank you for your replies, Rene and Simon. Unfortunately, HDF5 would not > properly install. Simon, would you be able to show me the syntax for > extracting the Range and Array from the UnivariateKDE object? I'm not > familiar with these composite objects and could not find anything in my > searches on the topic. Thank you. >
I would suggest filing an issue with HDF5.jl: https://github.com/timholy/HDF5.jl After you've created your UnivariateKDE object: k = kde(X) you can access the fields via . range = k.x density = k.density To recreate an object, just call the constructor: k = UnivariateKDE(range, density) -Simon
