|
"tirinacria CICCIOCICCIO" <d.accorso@tin.it> wrote in message
news:hbcr8k$bf3$1@fred.mathworks.com...
> Hey!
> I want to find all possible combinations among a series of matrices (
> mat1, mat2, may3,.........matN), taken 4 at the time.
Just posting the same question over and over won't get you any new
information, in general. But in this case I'll give you a hint.
matrixnames = {'A', 'B', 'C', 'D'};
matrixnames([1 3 4 2])
But in this case, rather than having matrices named mat1, mat2, mat3, ...
you should use a cell array or an N-D array of matrices. See Q4.6 in the
newsgroup FAQ.
--
Steve Lord
slord@mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
|