Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
Math Forum
»
Discussions
»
Software
»
comp.soft-sys.matlab
Notice: We are no longer accepting new posts, but the forums will continue to be readable.
Topic:
finding a column that has X element in each row
Replies:
5
Last Post:
Nov 19, 2012 2:07 AM
|
 |
|
|
Re: finding a column that has X element in each row
Posted:
Nov 19, 2012 2:07 AM
|
|
[c, ~] = find(a'==2)
% Bruno
|
|
|
|