Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
concatenate a vector in column-major order
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am trying to solve a problem where the elements of a vector is compared to something and if found true the location of the element (say(1,2)) is output into another vector in a column-major order . my problem is that the vector returns the location of the last element, it overrides the elements before it instead of concatenating it. e,g if the locations of the elements are (1,2) (3,2) (4,1). it returns only (4,1). how do I make it to concatenate and how do I set it to column-major order?
1 Commento
Azzi Abdelmalek
il 2 Giu 2016
Your question is not clear, post your code, you can also, illustrate with an example
Risposte (2)
Jos (10584)
il 2 Giu 2016
X = randi(20,6,4)
[ii,jj] = ndgrid(1:size(X,1), 1:size(X,2))
tf = X < ii.*jj
ii(tf)
jj(tf)
5 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!