You can't round a string. You need to read in the data and round that
storedStructure = load(filename);
thisData = storedStructure.yourData; % Whatever it's called...
thisData = round(thisData, 2); % Round to 2 decimal places.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!