loop for excel in MATLAB

6 次查看(过去 30 天)
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 个评论
per isakson
per isakson 2012-6-7
Did you look in the Matlab on-line help?
Samer Husam
Samer Husam 2012-6-7
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 ?

请先登录,再进行评论。

采纳的回答

Samer Husam
Samer Husam 2012-6-8
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 ??

更多回答(1 个)

Andrei Bobrov
Andrei Bobrov 2012-6-7
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 个评论
Image Analyst
Image Analyst 2012-6-8
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 2012-6-8
Thank you Image Analyst! Such a good explanation difficult for me (English is not my mother tongue).

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by