function smallest = SAV() % should have used parenthaseze ex: SAV() % Computest the smallest absulute value of the matrix E. % % Synopsis: SAV % % input: none % % output: positive real number (smallest in matrix E) E = [4.5,-1.0;-3.0,1.0;-0.75,1.75]; % min(abs(E)): returns a row vector with smallest number. % min(min(abs(E)): returns the smallest number in the row. smallest = min(min(abs(E))); Klapheckout(E, smallest);