function result = stillAnotherFunction(v)
%stillAnotherFunction does something with a vector v
%Examples:
%  ... (omitted to make you think harder)
%D. Duck for CISC106 sect 99, 11/10/2006
  result = 0;
  for k=1:length(v)
     result = result + ( v(k)^2 );
  end
  return
end