フィルターのクリア

loop for excel in MATLAB

6 ビュー (過去 30 日間)
Samer Husam
Samer Husam 2012 年 6 月 7 日
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 Center および File ExchangeData Import from MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by