Save matrix data to excel in matlab (맷랩 매트릭스 데이터 엑셀에 저장하는 방법)
공식 문서 ( 여기 )
Official docs ( Here )
e.g.
1. 가장 기본적인 sheet 1 번에 값 저장
filename = 'testdata.xlsx';
A = [12.7 5.02 -98 63.9 0 -.2 56];
xlswrite(filename,A)
2. Sheet 번호와, cell 위치를 지정해서 값 저장
filename = 'testdata.xlsx';
A = {'Time','Temperature'; 12,98; 13,99; 14,97};
sheet = 2;
xlRange = 'E1'; % 'C1:E1' 과 같이 범위 지정 가능
xlswrite(filename,A,sheet,xlRange)
etc..
More info
Excel은 Inf
값을 65535
로 변환.
MATLAB은 NaN
값을 빈 셀로 변환.
Excel converts Inf to 65535
MATLAB converts NaN to empty cell
Something else...
2018/10/31 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #23 boxBlur. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar
2018/10/29 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #22 avoidObstacles. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar
2018/10/28 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #21 isIPv4Address. Algorithm, 알고리즘, Codefights, CodeSignal, regx, 정규표현식, 코드파이트, 코드시그널, c++ java c# scalar
2018/10/28 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #20 arrayMaximalAdjacentDifference. Algorithm, Codefights, CodeSignal, 코드파이트, 코드시그널, c++ java c# scalar
2018/10/27 - [Algorithm/Code Fights (Code Signal)] - Aracade Intro #19 AreEquallyStrong. Algorithm, Codefights, CodeSignal, 코드파이트, 코드시그널, c++ java c# scalar
2018/11/04 - [Programming/Database] - Difference between Char and Varchar in Database datatype, 데이터베이스 자료형 Varchar 와 Char 의 차이점
2018/11/02 - [Programming/Java] - Apache POI library excel file, Mat in OpenCV to Excel file / 아파치 POI 라이브러리 엑셀파일 쓰기 OpenCV Mat 에서 엑셀파일 만들기 (java, c++)
2018/11/02 - [Programming/Java] - Apache POI library excel file read to make Mat in openCV / 아파치 POI 라이브러리 엑셀파일 읽기 OpenCV Mat 만들기 (java, c++)
2018/10/26 - [Programming/Java] - Difference between String, StringBuilder, and StringBuffer Class 차이점 / Java c++ 문자열, example 예제