On Tue, Jun 5, 2012 at 11:04 AM, Jerry <lancebo...@qwest.net> wrote:
> octave-3.4.0:1> x = 0 : 7;
> octave-3.4.0:2> fftshift(x);
> error: fftshift: A(I): index out of bounds; value 8 out of bound 1
> error: called from:
> error:   /bla/bla/fftshift.m at line 70, column 14
>

works in octave-3.6.1 fine

octave:5> x=0:7
x =

   0   1   2   3   4   5   6   7

octave:6> fftshift (x)
ans =

   4   5   6   7   0   1   2   3

octave:7>



>
> Jerry
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Octave-dev mailing list
> Octave-dev@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/octave-dev



-- 
icq: 167498924
XMPP|Jabber: marku...@jabber.ccc.de

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to