Hi,<br><br>I am getting a g++ error message when trying to compile my ADMB code. I get an error saying it cannot convert 'param_init_bounded_number' to 'double'<br>The simplified version of the code causing the error message is<br>
<br>for (int i=1;i<=25;i++)<br>{for (int j=1;j<=90;j++)<br>{if (i<=11)  <br>{h_f(j,i)=b96}}}<br><br>In the data section I have a dummy matrix for h_f<br><br>matrix h_f(1,90,1,25)<br><br>And in the parameter sections I have b96 as a bounded number with the initial value of 0.82 being read in from the starting estimate file.<br>
<br>init_bounded_number b96(0,1)<br><br>Does anyone know why I might be getting this error message?<br><br>Thanks,<br><br>Justin<br>