From: us on
"kk KKsingh" <akikumar1983(a)gmail.com> wrote in message <i1en91$hqi$1(a)fred.mathworks.com>...
> "kk KKsingh" <akikumar1983(a)gmail.com> wrote in message <i1el7d$80s$1(a)fred.mathworks.com>...
> > "kk KKsingh" <akikumar1983(a)gmail.com> wrote in message <i1ein7$s5c$1(a)fred.mathworks.com>...
> > > is it possible to remove coulmns from matrix without using for loop..Suppose i want to remove first 200 coulmns and end 200 columns of A=1000 by 1000 Matrix.....without using for loop
> >
> >
> > NO worries I got it Thanks
>
> Just in case any one need it
>
> A(:,1:200)=[];
> A(end-200:end)=[];
>
> Thanks
>
> Kumar

well... NO - you did NOT get it...
your solution is simply wrong...

us