|
"ravi " <ravi_071@hotmail.com> wrote in message <hlmc34$25j$1@fred.mathworks.com>...
> I have an array X
>
> X = [sd' ; vd']'
>
> My output is as follows
> X =
>
> 658 1072
> 96 103
> 760 1089
> 292 298
> 777 1034
> 353 357
>
> I wish INSTEAD to output like this:
>
> X = 658 96 1072 103
> 760 292 1089 298
> 777 353 1034 357
>
> What Can I Do To Achieve This???
>
> Best,
> ravi
You need to tell us how sd and vd look like!
You might try fiddling around with reshape, transpose and horz/vertcat yourself ...
Jos
Jos
|