search for: wn_dm1

Displaying 1 result from an estimated 1 matches for "wn_dm1".

2009 Mar 26
1
Bug? FORTTRAN help
...ode: /* Cholesky factorization of (2,2) block of wn. */ F77_CALL(dpofa)(&wn[*col + 1 + (*col + 1) * wn_dim1], &m2, col, info); if (*info != 0) { *info = -2; return; } If I am not mistaken this says that there is a m2 * col matrix that starts at 'col + 1 + (col + 1) * wn_dm1. Where wn_dm1 is 2 * m. My first question is to verify that statement. Say I am trying to optimize the "banana function" as given in the documentation. In that case n = 2 and the default m = 5. So m2 is 10 and wn_dim1 is 20 and the dimension of wn is 100 (this is all by deduction. So if...