10월, 2022의 게시물 표시

matlab 명령어

 # http://matlab.izmiran.ru/help/techdoc/ref/load.html load Load workspace variables from disk Syntax load load('filename') load('filename', 'X', 'Y', 'Z') load('filename', '-regexp' , exprlist) load( '-mat' , 'filename') load( '-ascii' , 'filename') S = load(...) load filename -regexp expr1 expr2 ... Examples Example 1 -- Loading From a Binary MAT-file To see what is in the MAT-file prior to loading it, use  whos   -file : whos -file mydata.mat Name Size Bytes Class javArray 10x1 java.lang.Double[][] spArray 5x5 84 double array (sparse) strArray 2x5 678 cell array x 3x2x2 96 double array y 4x5 1230 cell array Clear the workspace and load it from MAT-file  mydata.mat : clear load mydata whos Name Size Bytes Class