warning(me​ssage('MAT​LAB:xlswri​te:AddShee​t'));

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

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.
Thank you so much.
How add this sheet?
How introduce this warning to my code, the values adds in the second page of excel and these are false because show are booleanos when I try to read in QGIS
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()

Sign in to comment.

Answers (0)

Asked:

on 10 Jan 2023

Commented:

on 12 Jan 2023

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!