function c = test(a,b) % function c = test(a,b) % Returns the sum of two numbers % Input parameters % a = a number % b = a number % Output parameters % c = sum of a and b c = a + b;