3 lines
89 B
Matlab
3 lines
89 B
Matlab
function medianValue = findmedian(setOfValues)
|
|
medianValue = median(setOfValues);
|
|
end
|