Problem:
Question 1: Write a matllab program that will do as converter from meters to feet, pounds to kg, celsius to fahrenheit
Quetion 2: Write three different functions every function in one file as follows
1- MTF (Meter to feet) this function named MTF will receive an input in meter and return the value in feet
2- PTK (Pound to Kilogram) this function named PTK will receive an input in pound and return the value in kg
3- CTF (Celsius to Fahrenheit) this function named CTF will receive an input in Celsius and return the value in Fahrenheit
Then create a script file that will call these functions when required as in the following example
1 meters to feet
2 pounds to kg
3 Celsius to Fahrenheit
4 Exist
Show the code, demonstrate it works properly and describe what it is doing.