function [ h s] = hypo( a, b ) %This function computes the hypotenuse of a triangle with sides of length a and b % and also the sum of the sides % Call the function [ h s] = hypo( a, b ) h=sqrt(a^2+b^2); s=a+b+h; end