Write a function largest () such that it can accept multiple numbers and return the largest item from the given list.

1 visualización (últimos 30 días)
Write a function largest () such that it can accept multiple numbers and return the largest item from the given list.
  3 comentarios
dpb
dpb el 27 de Jul. de 2022
See syntax @<@doc:function> shows how...although none of the examples use more than one, the syntax is shown in general.
To be really neat and (probably) get extra credit, you might look at @<nargin> and @<varargin> as well...
Just dive in...

Iniciar sesión para comentar.

Respuestas (1)

Jon
Jon el 27 de Jul. de 2022
There is already a MATLAB function that "can accept multiple numbers and return the largest one"
x = [2,15,23.7,91.4,80.3] % vector with multiple numbers
x = 1×5
2.0000 15.0000 23.7000 91.4000 80.3000
xmax = max(x) % return the largest one
xmax = 91.4000
  2 comentarios
Jon
Jon el 27 de Jul. de 2022
if you need to promt the user for the list then you can do something like this:
x = input('enter list of numbers, for example [1.1,2.3,38.7,5.3] ')
dpb
dpb el 27 de Jul. de 2022
Most homework assignments (as this must surely be) preclude the use of builtin functions to solve the problem as the pegagical exercise for the student...and, it's not clear the intent of this exercise is to consider a vector of multiple values as "multiple inputs" or not -- my reading is "not", but it doesn't say so unequivocally, granted.

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by