I don't know how to make and algorithm to find BMI?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I don't know how to make a MATLAB program that calculates BMI?
0 Kommentare
Antworten (1)
Vilém Frynta
am 3 Feb. 2023
This looks like homework.
Try creating a function. Inputs will be height and weight, and output will be the BMI.
Some useful links that might help you:
10 Kommentare
DGM
am 5 Feb. 2023
Bearbeitet: DGM
am 5 Feb. 2023
If you're putting the function into a script, then you won't be able to call from the command line. It's local to the script, so you call it within the script.
% this is a script
% call the local function
result = myfunction(5)
% this is a local function within a script
function out = myfunction(in)
out = in*10;
end
Otherwise, you can create a function file and place it somewhere on the path. Then you can call it where ever you want. See Star Strider's link.
Note that while you can turn any script into a function, function files contain only functions, and are treated differently than script files. Unless you've structured the file as a function, you'll have issues trying to execute it as a function.
Siehe auch
Kategorien
Find more on Historical Contests 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!