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 个评论

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

请先登录,再进行评论。

回答(1 个)

out = A';
out(out>0) = [B1,B2];
out = out';
or
bsxfun(@times,A,1:size(A,2))

类别

帮助中心File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

产品

提问:

2012-9-7

Community Treasure Hunt

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

Start Hunting!

Translated by