choose which function to run it

7 views (last 30 days)
Ahmed Amin
Ahmed Amin on 6 May 2021
Commented: Dharmendar on 18 Oct 2023
How can i make user choose which function that will be called
Ex: to run function 1 please enter 1
to run function 2 please enter 2 ..etc

Accepted Answer

Chunru
Chunru on 7 May 2021
You can use switch:
f = input('Which function to use? ');
switch f
case 1
func1;
case 2
func2;
otherwise
error('Wrong choice');
end
Of cource, you can also use if..elseif..else..end

More Answers (0)

Categories

Find more on Desktop in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!