MATLAB xlswrite function
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello all MATLAB users:
This came to my attention,
>> x = [inf 3 4 inf];
>> xlswrite('test',x,'test');
if you open the .xls file you will notice that the inf value in xls is the "magic" number 65535.
Does anyone know the reason?
댓글 수: 0
채택된 답변
Sean de Wolski
2011년 1월 28일
Because 2^16-1 is the largest number Excel can represent since it's 16 bit unsigned.
댓글 수: 2
추가 답변 (2개)
Kenneth Eaton
2011년 1월 28일
Excerpt:
- Excel converts Inf values to 65535. MATLAB converts NaN values to empty cells.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!