warning(message('MATLAB:xlswrite:AddSheet'));
Show older comments
Warning: Added specified worksheet.
%DATOS(1:18225,3)=reshape(Z1,[],1);
DATOS=double(DATOS);
save A18_RAIN_NC_ALL_TIME.dat DATOS -ascii
%xlswrite(filename,MATRIZ,sheet, xlrange)
xlswrite('A18_RAIN_NC_FULLTIME',DATOS,'DATOS_A18_RAIN_NC','B1');
Esto es lo que me sugiere MatlaB...
¿Cómo lo arreglo?
> In xlswrite>activate_sheet (line 298)
In xlswrite/ExecuteWrite (line 264)
In xlswrite (line 218)
3 Comments
Walter Roberson
on 10 Jan 2023
Your file did not already contain a worksheet named DATOS_A18_RAIN_NC and xlswrite is advising you that it has now added a worksheet named DATOS_A18_RAIN_NC . It is a warning so that you will know to re-check the exact worksheet name in case it was a spelling mistake.
Alejandra Moreno
on 10 Jan 2023
Walter Roberson
on 12 Jan 2023
It is a warning; it went ahead and added the sheet.
I suggest that you consider using using readmatrix and writematrix instead of xlsread() and xlswrite()
Answers (0)
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!