Clear Filters
Clear Filters

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

1 view (last 30 days)
[~,b] = min(abs(RealEL1));

Accepted Answer

Matt J
Matt J on 4 Oct 2017
Edited: Matt J on 4 Oct 2017
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.

More Answers (1)

Guillaume
Guillaume on 4 Oct 2017
The ~ ignores the first output of min as you're only interested in the index of the minimum, not its actual value.

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!