Write a function taking three variables as input and returning the minimum of them. i've tried doing this-

5 views (last 30 days)
a = input ('enter a >');
b = input ('enter b >');
c = input ('enter c >');
A = [a, b, c];
B = min(A);
disp(B)
however this seems so simple is there any way you can create a user defined function in which you can input 3 values and receive the minimum as an output??

Answers (1)

Steven Lord
Steven Lord on 25 Oct 2021
See this section of the documentation for instructions on how to create a function with input and output arguments in a file.

Community Treasure Hunt

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

Start Hunting!