필터 지우기
필터 지우기

xlswrite in for loop

조회 수: 2 (최근 30일)
Ali
Ali 2013년 5월 20일
I wrote a genetic algorithm code about Travelling Salesman Problem. I want to run the program 100 times (each run includes 5000 iterations). In each run, the program yields the optimal route w.r.t its total distance. I want the computer to write this best solution (it is the first row o a matrix) into an excel file, each solution added in different rows in excel (i.e. the result of first run in row 1 in spreadsheet, the result of second run in second row in spreadsheet and so on). I used xlsread('experiments', L(1,:), 'exp1', 'A(counter):Q(counter)') but dinna work and gave object returned error code: 0x800A03EC. Thanks.

채택된 답변

Image Analyst
Image Analyst 2013년 5월 20일
You should not run xlswrite() 100 times, unless you are prepared to wait a long time - a very long time. It will have to launch Excel and shutdown Excel each time you call xlswrite(). It will be so much faster to use ActiveX, and xlswrite1() from the File Exchange. I've posted ActiveX demos here before. Let me know if you want me to post it again here.
  댓글 수: 8
Image Analyst
Image Analyst 2013년 5월 20일
Let me know what the error is. If you're going to be using Excel with MATLAB, then using ActiveX is something you should learn at some point. The basics aren't hard but sometimes if you want to do something advanced it takes a while to find the name of the right method to do what you want to do.
Ali
Ali 2013년 5월 25일
hi image analyst, The error is Error using==>xlswrite1 at 142 Error:Object returned error code 0x800A03EC
Error in ==> xlswrite1 at 142 error('MATLAB:xlswrite:SelectDatarange',lasterr);
Error in ==> ullyesses16ali at 244 xlswrite1('experiments',minc,'exp1_TS_PMX_SWAP',sprintf('B%d', counter+1));

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Iain
Iain 2013년 5월 20일
편집: Iain 2013년 5월 20일
Define the top-left corner of where you want to write data and ensure it is a string.
xlswrite('filename.xls',L(1,:),'sheet name here',['A' num2str(counter)]);
  댓글 수: 4
Iain
Iain 2013년 5월 20일
If you really did put a colon between 'A' and num2str(counter) it would do that.
['A' num2str(5)] concatenates 'A' with '5' to get 'A5'
Ali
Ali 2013년 5월 20일
thanks a lot again friend:)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by