How to open the xcel file automatically?

조회 수: 2 (최근 30일)
sandeep
sandeep 2011년 3월 21일
Hello all, I have created the xcel file to store some data from mfile into xcel file using the following:
%create the cell array containing the column headers
columnHeader = {'plotted points', 'area1','area2'};
%write the column headers first
xlswrite('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx', columnHeader );
%write the data directly underneath the column headers
xlswrite('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx', Z2(record2),'Sheet1','A2');
xlswrite('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx', surfacearea_1,'Sheet1','B2');
xlswrite('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx', surfacearea_2,'Sheet1','C2');
I have inserted the above code in a matlab program. But the program should open the xcel file automatically when it is executed. Can anyone please help me out.
regards,

답변 (1개)

Michael Katz
Michael Katz 2011년 3월 21일
winopen('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx')
  댓글 수: 1
sandeep
sandeep 2011년 3월 22일
Thanks a lot for the answer.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by