From: Rock Bean on
sorry i meant to say

how can the 100th column be moved to the one after the 6th column*
From: Steven Lord on

"Rock Bean" <petrafava(a)gmail.com> wrote in message
news:hodgrp$qfv$1(a)fred.mathworks.com...
> sorry i meant to say
>
> how can the 100th column be moved to the one after the 6th column*

Petra/Rock,

I get the impression from your questions that you're a new user of MATLAB,
or someone who's used MATLAB before but hasn't used it for a while and is a
little rusty. If that's the case, I strongly recommend you read through and
execute the examples in the Getting Started section of the documentation.
It will teach you how to use functions and work with matrices in MATLAB, and
may help you answer these types of questions without having to wait for
someone on CSSM (this newsgroup) to read them and respond. To access this
documentation, type the following command at the MATLAB prompt:

doc matlab

and click on Getting Started in either frame of the Help Browser.

--
Steve Lord
slord(a)mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ


From: dpb on
Rock Bean wrote:
> sorry i meant to say
>
> how can the 100th column be moved to the one after the 6th column*

many ways...

doc colon % for starting

Remember to watch out for overwriting something you want so consider the
order if try to do it in place. Alternatively, of course, one can build
a new matrix/array in the desired order and then clear the previous one...

--
From: Rock Bean on
"Steven Lord" <slord(a)mathworks.com> wrote in message <hodht5$eh6$1(a)fred.mathworks.com>...
>
> "Rock Bean" <petrafava(a)gmail.com> wrote in message
> news:hodgrp$qfv$1(a)fred.mathworks.com...
> > sorry i meant to say
> >
> > how can the 100th column be moved to the one after the 6th column*
>
> Petra/Rock,
>
> I get the impression from your questions that you're a new user of MATLAB,
> or someone who's used MATLAB before but hasn't used it for a while and is a
> little rusty. If that's the case, I strongly recommend you read through and
> execute the examples in the Getting Started section of the documentation.
> It will teach you how to use functions and work with matrices in MATLAB, and
> may help you answer these types of questions without having to wait for
> someone on CSSM (this newsgroup) to read them and respond. To access this
> documentation, type the following command at the MATLAB prompt:
>
> doc matlab
>
> and click on Getting Started in either frame of the Help Browser.
>
> --
> Steve Lord
> slord(a)mathworks.com
> comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
>



I don't mean to sound like a complete idiot but as you said i am rusty and using horrendous notes .... i am not understanding were i will be able to grab this document from ..
if it is not too much to ask do you think you will be able to send me the link to it or something?

thanks a real lot for your help :)
From: dpb on
Rock Bean wrote:
....

> I don't mean to sound like a complete idiot but as you said i am rusty
> and using horrendous notes .... i am not understanding were i will be
> able to grab this document from ..

It's part of the local installation...

--