AttributeError: 'BaseMatern52Kernel' object has no attribute 'vector'
numairmansur opened this issue · 2 comments
numairmansur commented
The example given in the kernels sections does not work anymore:
from george import kernels
k = 2.0 * kernels.Matern32Kernel(5.0)
print(k.vector)
I get:
AttributeError: vector
dfm commented
Take a look at http://george.readthedocs.io - that's where the
documentation lives now.
…On Sat, Sep 23, 2017 at 8:51 AM Numair Mansur ***@***.***> wrote:
The example given in the kernels
<http://dfm.io/george/current/user/kernels/#combining-kernels> sections
does not work anymore:
from george import kernels
k = 2.0 * kernels.Matern32Kernel(5.0)
print(k.vector)
I get:
AttributeError: vector
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#76>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAVYSi-GgQ23PY_XzT7AIB7Cxzmlu6lMks5slP6ygaJpZM4Phi1W>
.
numairmansur commented
Alright thanks !