Borrar filtros
Borrar filtros

loop for excel in MATLAB

6 visualizaciones (últimos 30 días)
Samer Husam
Samer Husam el 7 de Jun. de 2012
hi all, I want to save values from MATLAB to excel so I want to write a loop to check if the cell has a value or not, for example: lets consider the column (B) I want the matlab to start checking from B4 which one is empty cell to save the new values in it, how this can be done ?? looking for your help please.
  2 comentarios
per isakson
per isakson el 7 de Jun. de 2012
Did you look in the Matlab on-line help?
Samer Husam
Samer Husam el 7 de Jun. de 2012
I tried to, but couldn't find the way to do it,
actually i could write the code for the loop in order to check the value for a cell.
any suggestions please ?

Iniciar sesión para comentar.

Respuesta aceptada

Samer Husam
Samer Husam el 8 de Jun. de 2012
thanks all for your help, but I can't make this work cause its not really clear to me.. so, is there another way to do it ? for example: for column B in (excel) write loop program to check if the cell has value or not ?
%------a:is the variable to save------
for i=5
xlsread(('G:\\MATLAB Examples\Data_sheet.xlsx','Sheet1','B%i','value')==1;
i+1;
end
xlswrite(G:\\MATLAB Examples\Data_sheet.xlsx',a,'Sheet1','B%i,)
can something like this to be done between matlab and excel ??

Más respuestas (1)

Andrei Bobrov
Andrei Bobrov el 7 de Jun. de 2012
one way
[nt,nt,nt] = xlsread('nameyour.xlsx');
nt(cellfun(@isnan,nt)) = {256};
xlswrite('nameyour.xlsx',nt)
ON Samer's reply
eg, data:
xlswrite('Data_sheet.xlsx',[1;8;1;6;1],'B1:B5')
solution
a = 100;
[n,t,nt] = xlsread('Data_sheet.xlsx','B1:B5');
n(n == 1) = a;
xlswrite('Data_sheet.xlsx',n,'B1:B5')
  3 comentarios
Image Analyst
Image Analyst el 8 de Jun. de 2012
He's setting those Excel cells (which are now in a MATLAB cell array called nt) that are not numbers to have the new value of 256. You can change the 256 to whatever number you want. Then it writes if back out to the same file. If you want just some submatrix (like B4..F42), then you'd have to extract that submatrix before running andrei's code on just that submatrix. Then insert the submatrix back into the full matrix and write out the full matrix.
Andrei Bobrov
Andrei Bobrov el 8 de Jun. de 2012
Thank you Image Analyst! Such a good explanation difficult for me (English is not my mother tongue).

Iniciar sesión para comentar.

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by