Filter löschen
Filter löschen

Creating a matrix containing binary vectors as elements

1 Ansicht (letzte 30 Tage)
David
David am 22 Sep. 2012
Based on the dimension n, i want to create a matrix containing binary vectors:
For example with n=1:
A=[[-1],[0],[1]]'
n=2:
A=[[-1,-1],[-1,0],[-1,1],[0,-1],...,[1,1]]
n=3:
A=[[-1,-1,-1,-1],[-1,-1,-1,0],[-1,-1,-1,1],[-1,-1,0,-1],[-1,-1,0,0],...,[1,1,1,1]]'
Since the dimension is the input variable, I don't know how many while- or for-commands i need in advance.
Any suggestions?
  1 Kommentar
Star Strider
Star Strider am 22 Sep. 2012
Bearbeitet: Star Strider am 22 Sep. 2012
It's not obvious from your question what you want to do.
How are you creating the elements of your vectors?
Is ‘A’ different for each value of n or are you dynamically creating A?
For a start, I suggest you explore creating ‘A’ as cell or perhaps structure data. They may do what you want.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 22 Sep. 2012
Bearbeitet: Rick Rosson am 22 Sep. 2012
N = 4;
A = zeros(3^N,N);
for k = 1:N
r = N - k;
v = [ -1*ones(3^r,1) ; zeros(3^r,1) ; ones(3^r,1) ];
A(:,k) = repmat(v,3^(k-1),1);
end

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by