NCHOOSEK - What am I doing wrong?
Mostra commenti meno recenti
V = nchoosek({CRY,DXY,GOLDS,USCRWTIC,USGG2YR,USGG10YR},4);
for i= 1:15;
A{i} = V(i,:);
end;
Basically, I would need to create A1 to A15 containing the 'i' line of the matrix V. For example:
V = [1 2 3 4 ; 5 6 7 8 ; 9 0 1 2]
I would need
A1 = [1 2 3 4]
A2 = [5 6 7 8]
A3 = [9 0 1 2]
I've been searching for this for all day >.<
Risposta accettata
Più risposte (4)
Azzi Abdelmalek
il 24 Mag 2013
Modificato: Azzi Abdelmalek
il 24 Mag 2013
V = [1 2 3 4 5 6 7 8 9 0 1 2];
V=reshape(V,4,[]);
for i= 1:3
A{i} = V(:,i)';
end
6 Commenti
Simon
il 24 Mag 2013
Azzi Abdelmalek
il 24 Mag 2013
Your variables are
A{1}
A{2}
A{3}
Simon
il 24 Mag 2013
Azzi Abdelmalek
il 24 Mag 2013
Why do you want to create A1,A2 and A3, while one variable A is enough ?
Azzi Abdelmalek
il 24 Mag 2013
If you insist to create A1,A2 and A3 (which is not recomanded)
V = [1 2 3 4 5 6 7 8 9 0 1 2];
V=reshape(V,4,[]);
for i= 1:3
eval([ sprintf('A%d',i) '= V(:,i)'''])
end
Jan
il 25 Mag 2013
@Simon: Don't use EVAL. Creating A1, A2, ... is a bad programming pattern and therefore the most cited question from the FAQ: FAQ: How can I create A1, A2, ... in a loop .
Staying with the original matrix and using V(i, :) would be much more direct and efficient instead of inserting indirect intermediate copies to a bunch of variables, which require crude tricks to be access automatically.
Andrei Bobrov
il 24 Mag 2013
A = num2cell(V,2);
Jan
il 25 Mag 2013
1 voto
V(i, :) is perfect already. Are you sure that there is any reason for adding a level of abstraction by splitting the matrix to a bunch of vectors?
2 Commenti
Simon
il 25 Mag 2013
Jan
il 25 Mag 2013
@Simon: It is very likely, that you can perform the regression even with the original matrix directly. The most Matlab commands can handle a matrix input and process the operations for the subvectors automatically. When you post the code you want to apply, more detailed suggestions are possible.
When you want to access the contents of a cell, use the curly braces: A{1} etc.
Simon
il 26 Mag 2013
0 voti
3 Commenti
Randy Souza
il 31 Mag 2013
Simon, you can always vote for the other answers!
Simon
il 31 Mag 2013
Modificato: Randy Souza
il 31 Mag 2013
Randy Souza
il 31 Mag 2013
There should be a triangle with "x Votes" under the profile picture for the answerer. Click that and it should change to "(x + 1) Votes"
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!