MATLAB: Could someone explain below part of code please ? I do not understand the first part [~,b]

[~,b] = min(abs(RealEL1));

Best Answer

These are the outputs of the min() function. b is the location of the minimum value. ~ means that the first output argument, the minimum value itself, is not to be assigned to any variable.