3 lines
81 B
Matlab
3 lines
81 B
Matlab
function modeValue = findmode(setOfValues)
|
|
modeValue = mode(setOfValues);
|
|
end
|