<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>
<div>Hi,</div>

<div> </div>

<div>many thanks! The type signature helped fine:</div>

<div> </div>

<div>let rtHistogram  = H.histogram numBuckets rtimesVec :: (V.Vector Double, V.Vector Double)</div>

<div> </div>

<div>On the other hand, when I tried</div>

<div>
<div>{-# LANGUAGE NoMonomorphismRestriction #-}</div>

<div> </div>

<div>ghci told me to add<br/>
{-# LANGUAGE FlexibleContexts #-}</div>

<div> </div>
</div>

<div>after which it compiled, as long as I didn't try to additionally print it - there I got a similar error as before.</div>

<div> </div>

<div>So I'll stick with the type signature :-)</div>

<div> </div>

<div>thkx</div>

<div>Sigrid</div>

<div> 
<div name="quote" style="margin:10px 5px 5px 10px; padding: 10px 0 10px 10px; border-left:2px solid #C3D9E5; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div style="margin:0 0 10px 0;"><b>Gesendet:</b> Samstag, 19. Dezember 2015 um 19:20 Uhr<br/>
<b>Von:</b> "Marcin Mrotek" <marcin.jan.mrotek@gmail.com><br/>
<b>An:</b> "Sigrid Keydana" <keydana@gmx.de><br/>
<b>Betreff:</b> Re: [Haskell-cafe] No instance of ... error with Statistics.Sample.Histogram</div>

<div name="quoted-content">You can try giving `rthistogram` an explicit type signature, like<br/>
<br/>
rthistogram :: (Vector Double, Vector Double)<br/>
<br/>
This might be related to "monomorphism restriction" too. You can try<br/>
turning it off with {-# LANGUAGE NoMonomorphismRestriction #-}, but<br/>
I'd advise you to read up on what it does before doing this (more or<br/>
less, it's on by default so that top-level things that look like<br/>
variables are monomorphic and thus can be shared. Polymorphic values<br/>
have to be recomputed every time they're used)<br/>
<br/>
Best regards,<br/>
Marcin Mrotek</div>
</div>
</div>
</div></div></body></html>