Answer and Explanation:
Using MATLAB code:
Function Lkm = Lkm-mpgToLpkm (mpg)
Lkm= mpg*1.60934/3.78541;
Lkm= Lkm^(-1);
Lkm= Lkm*100;
%the code above defines a function Lkm and takes argument/input to its parameter mpg(miles per gallon) and then returns/output Lkm which is the litres per kilometers conversion from miles per gallon input.
end
To call the function written above with argument 30 mpg, we write:
Lkm= Lkm-mpgToLpkm (30)