<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof">Hi,</div>
<div class="elementToProof">I'm struggling with trying to view data returned from make-moving-autocorrelation.&nbsp; The manual indicates data is available from mus-data, but I'm only seeing zeros if I'm doing that correctly.&nbsp; Moving-pitch, etc. work fine.&nbsp; Just
 can't seem to see anything from moving-autocorrelation.</div>
<div><br>
</div>
<div class="elementToProof">Regards,</div>
<div class="elementToProof">Jim</div>
<div class="elementToProof"><br>
</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
(let* ((n 512)</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(hop 128)</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(ac (make-moving-autocorrelation (make-readin &quot;/oboe.snd&quot;) n hop ))&nbsp;</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(mydata (make-float-vector hop))&nbsp;</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
(format #t &quot;mus-data:\n&quot;)&nbsp;</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
(let* ((data &nbsp;(mus-data ac))</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; &nbsp; &nbsp;(len (length data)))</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
(format #t &quot;length data: ~A\n &quot; len )</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
<br>
</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
(set! mydata (mus-data ac))</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
&nbsp; &nbsp; (do ((i 0 (+ i 1)))</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);" class="elementToProof">
      ((= i hop))</div>
<div style="font-family: &quot;Calibri&quot;, &quot;Helvetica&quot;, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
(format #t &quot;~A ~0,12F\n &quot; i (mydata i) ) )))</div>
</body>
</html>