remove temp file

This commit is contained in:
Erick
2022-01-29 00:10:03 +01:00
parent bc0806843d
commit 3a976e9278
4 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -4,12 +4,12 @@ clc;
prompt = 'Press "1" for front or "2" for rear: ';
side = input(prompt, 's');
selectSide(side);
[content, fileName, sheetName] = selectSide(side);
fprintf('Initializing exporting process \n');
for i=1:length(content)
writetable(content, filename, 'Sheet', sheetName, 'WriteVariableNames', true);
writetable(content, fileName, 'Sheet', sheetName, 'WriteVariableNames', true);
end;
fprintf('Finished exporting')