Logical Manipulation of Vector
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I require a logical vector with 'a' number of rows =1 and followed by 'b' rows =0. How can I create this without if statements?
I know a and b.
3 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
Walter Roberson
am 5 Sep. 2011
Something like,
kron([true;false],[a;b])
Unfortunately I cannot reach my server today to test this.
2 Kommentare
Oleg Komarov
am 5 Sep. 2011
It could have been the most elegant, although with some overhead but the result is:
ans =
10
15
0
0
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!