writecell() error with 'AutoFitWidth' option

조회 수: 17 (최근 30일)
Changho Yun
Changho Yun 2021년 12월 13일
댓글: Changho Yun 2021년 12월 22일
If i put the following single line in MATLAB_R2021b, I have an error massage that 'AutoFitWidth' is not valid parameter name.
writecell({1,2},"temp.txt","AutoFitWidth",true);
Other options are working well, but only 'AutoFitWidth' does not work.
The exact error massage is the following (Its in Korean)
다음 사용 중 오류가 발생함: writecell (195번 라인)
유효하지 않은 파라미터 이름임: AutoFitWidth.

답변 (1개)

Gargi Patil
Gargi Patil 2021년 12월 21일
Hi,
The property AutoFitWidth is used to adjust column width automatically. Thus, it can only be used when writing to spreadsheet file formats of the type .xls, .xlsx etc. and not while writing to text files.
The following code snippet can be used instead:
writecell({1,2},'temp.xlsx','AutoFitWidth', true);
  댓글 수: 1
Changho Yun
Changho Yun 2021년 12월 22일
Thank you.
I thought it makes empty spaces to align the columns

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

카테고리

Help CenterFile Exchange에서 MATLAB에서 COM 객체에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!