Write a function largest () such that it can accept multiple numbers and return the largest item from the given list.
Mostra commenti meno recenti
Write a function largest () such that it can accept multiple numbers and return the largest item from the given list.
3 Commenti
Steven Lord
il 27 Lug 2022
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Hania
il 27 Lug 2022
Risposte (1)
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
xmax = max(x) % return the largest one
2 Commenti
Jon
il 27 Lug 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
il 27 Lug 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.
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!