How to manipulate matrix elements ?

If i have a matrix 'A' (with logical elements) and I want to create another matrix B such that its elements are the column numbers for which elements in A are '1', operating on 1 row at a time.
eg
or

3 Comments

Who haz teh codez?
@Mandar: for such simple example we would appreciate if you posted hardcoded examples instead of images.
I can't see your images, just two frogs

Sign in to comment.

Answers (1)

Andrei Bobrov
Andrei Bobrov on 7 Sep 2012
Edited: Andrei Bobrov on 7 Sep 2012
out = A';
out(out>0) = [B1,B2];
out = out';
or
bsxfun(@times,A,1:size(A,2))

Categories

Products

Asked:

on 7 Sep 2012

Community Treasure Hunt

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

Start Hunting!