minimum of 4 integers

Is there a Matlab function to find the minimum of 4 integers? Min only finds for 2 integers

 Accepted Answer

Karsten Reuß
Karsten Reuß on 19 Jan 2017

0 votes

Do you mean this?
smallestnumber=min([3 5 6 7])

More Answers (1)

Guillaume
Guillaume on 19 Jan 2017
Edited: Guillaume on 19 Jan 2017
Put all your integers in one array and call min, e.g.:
min([10 15 11 9])

2 Comments

Ken
Ken on 19 Jan 2017
Thanks
Ken
Ken on 19 Jan 2017
Edited: Ken on 19 Jan 2017
I am trying to evaluate this, but I want the answer in the expression for x and y; instead I am getting an integer. Please help:
min([(x-1 - Goal(1) +y - Goal(2)),(x+1- Goal(1) +y- Goal(2)),...
(x - Goal(1) +y-1 - Goal(2)),(x - Goal(1) +y+1 - Goal(2))])

Sign in to comment.

Tags

Asked:

Ken
on 19 Jan 2017

Edited:

Ken
on 19 Jan 2017

Community Treasure Hunt

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

Start Hunting!