Minimum value of loop

3 views (last 30 days)
hassan alolaiwee
hassan alolaiwee on 12 Nov 2019
Commented: hassan alolaiwee on 12 Nov 2019
if i have loop, for example
>> for i=1:3
a=i+2
end
the MATLAB will give me
a= 3,4,5
The question is: how to make matlab give me only the minimum value between those? which is 3
because i have many solutions and i want only the minimum one

Accepted Answer

Stephen23
Stephen23 on 12 Nov 2019
>> N = 3;
>> a = Inf;
>> for k = 1:N, a = min(a,k+2); end
>> a
a = 3

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!