Robochameleon  v1.0
minIdx.m
Go to the documentation of this file.
1 function id = minIdx( x,dim )
2  [~,id]=min(x,[],dim);
3 end