From: Nir K. <nkr...@cc...> - 2012-11-21 20:09:13
|
Dear Ted, Can you give an example where it fails? Nir On Wed, Nov 21, 2012 at 3:25 AM, Ted Rippert <ted...@gm...> wrote: > csape(x, y, "cond") with a boundary condition of "periodic" will work > for a one dimensional vector, but not for a matrix value for y. This > is fixed by changing line 162 in csape.m from: > > c(2:n,idx) = z(:,2:end) - z(:,1) * fact; > > to: > > c(2:n,:) = z(:,2:end) - z(:,1) * fact; |