octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: possible issue in octave-forge package image (fftconv2)


From: Carnë Draug
Subject: Re: possible issue in octave-forge package image (fftconv2)
Date: Mon, 8 Jul 2013 02:29:43 +0100

On 8 July 2013 01:21, Alireza Nejati <address@hidden> wrote:
> As for the other problem, it seems to be a simple matter of getting the
> row/column vector orientation wrong. In my version, lines 51-52 are:
>
>     v1 = varargin{1}(:)';
>     v2 = varargin{2}(:);
>
> Changing this to:
>
>     v1 = varargin{1}(:);
>     v2 = varargin{2}(:)';
>
> Fixes the problem for me.

That fixed the problem when getting the full convolution. To also fix
the others it was also required to change the vectors when doing the
resizing but yeah, it's fixed now. Thank you very much.

Carnë


reply via email to

[Prev in Thread] Current Thread [Next in Thread]