Print array value into excel
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I have an integer value in one variable 'sno', i want to print that values like an array.
ex: if sno == 7 means i want to print from 1 to 7
help me in this
thanks in advance
댓글 수: 0
채택된 답변
ES
2013년 12월 3일
You want to write this into an Excel File?
ExcelData=[1:7]';
xlswrite(ExcelFileName,ExcelData);
will do.
추가 답변 (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!