MATLAB: How can I change the Excel file format from matlab

importing excel data

Hello, I try to change a .xls file format in to .xlsx format.

Best Answer

[~,~,im]= xlsread('file.xls');
xlswrite('file.xlsx',im)