How can I find column number of a specific element in matrix?

1 次查看(过去 30 天)
I want to compare three element in a matrix and find minimum between them. then I want to know the column number of minimum element.
Could you help me how can I do it?
thanks

回答(1 个)

Orion
Orion 2014-11-6
编辑:Orion 2014-11-6
I guess you meant three element in a vector (you can make the same operation on a matrix)
ex :
vec = [5 3 9];
[MinValue, MinPosition] = min(vec);

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by