function [y]=fround(x,n) // fround(x,n) // Round the floating point numbers x to n decimal places // x may be a vector or matrix // n is the integer number of places to round to y=round(x*10^n)/10^2; endfunction