MATLAB: How to use the functions

matlab function fem

I'm doing an exercise with fem and i have 4 function. How do I use them one after the other to get a final result at the end?

Best Answer

temp1 = first_function(YourInput);
temp2 = second_function(temp1);
temp3 = third_function(temp2);
output = fourth_function(temp3);