你可以建立以下類型的文件:
矩形,從一個(gè)數(shù)組分隔的ASCII數(shù)據(jù)文件。
日記或日志文件的按鍵和文本輸出。
專業(yè)的ASCII文件,如 fprintf 使用低層函數(shù)。
使用 MEX 文件來訪問你的 C/ C++ 或 Fortran 程序?qū)懭氲揭粋€(gè)特定的文本文件格式。
另外,還可以將數(shù)據(jù)導(dǎo)出到 Excel。
導(dǎo)出數(shù)字陣列作為分隔符的 ASCII 數(shù)據(jù)文件的方法有兩種:
使用 save 函數(shù)及指定的 ASCII 限定符
使用 dlmwrite 函數(shù)
使用 save 函數(shù)的語法如下:
save my_data.out num_array -ASCII
其中,my_data.out 定界 ASCII 創(chuàng)建的數(shù)據(jù)文件,num_array是一個(gè)數(shù)字的陣列和 ASCII 符。
dlmwrite 函數(shù)的語法如下:
dlmwrite('my_data.out', num_array, 'dlm_char')
其中,my_data.out 定界 ASCII 創(chuàng)建的數(shù)據(jù)文件,num_array 是一個(gè)數(shù)字陣列和 dlm_char 作為分隔符。
詳細(xì)例子
在MATLAB中建立一個(gè)腳本文件,并輸入下述代碼:
num_array = [ 1 2 3 4 ; 4 5 6 7; 7 8 9 0]; save array_data1.out num_array -ASCII; type array_data1.out dlmwrite('array_data2.out', num_array, ' '); type array_data2.out
運(yùn)行該文件,顯示以下結(jié)果:
1.0000000e+00 2.0000000e+00 3.0000000e+00 4.0000000e+00 4.0000000e+00 5.0000000e+00 6.0000000e+00 7.0000000e+00 7.0000000e+00 8.0000000e+00 9.0000000e+00 0.0000000e+00 1 2 3 4 4 5 6 7 7 8 9 0
請(qǐng)注意 save ASCII 命令和 dlmwrite 命令作為輸入不起單元陣列作用。
要?jiǎng)?chuàng)建一個(gè)分隔的 ASCII 文件,你可以從一個(gè)單元數(shù)組的內(nèi)容
要么,轉(zhuǎn)換單元陣列一個(gè)矩陣使用 cell2mat 函數(shù),
或者導(dǎo)出單元陣列,使用低級(jí)別的文件 I/O 函數(shù)。
如果使用 SAVE 功能寫一個(gè)字符數(shù)組的 ASCII 文件,它等價(jià) ASCII 碼字符寫入到文件中。
例如,讓我們寫的字'hello'的文件:
h = 'hello'; save textdata.out h -ascii type textdata.out
MATLAB執(zhí)行上述語句,顯示以下結(jié)果:
1.0400000e+02 1.0100000e+02 1.0800000e+02 1.0800000e+02 1.1100000e+02
這是字符的字符串 'hello' 的8位 ASCII 格式。
寫到日記文件
日記文件的活動(dòng)日志MATLAB的會(huì)話。日記函數(shù)創(chuàng)建您的會(huì)話在磁盤文件的精確副本,不包括圖形。
要打開的日記功能,輸入:
diary
或者,您可以給日志文件的名字,說:
diary logdata.out
要關(guān)閉的日記函數(shù):
diary off
可以在文本編輯器中打開日記文件。
MATLAB低級(jí)別的I/O數(shù)據(jù)導(dǎo)出到文本數(shù)據(jù)文件
到目前為止,我們已經(jīng)導(dǎo)出數(shù)字陣列。MATLAB提供低級(jí)別的 fprintf 函數(shù)創(chuàng)建其他文本文件,包括組合的數(shù)字和字符數(shù)據(jù),非矩形輸出文件,或文件中使用非ASCII編碼方案。
在低級(jí)別的I/O文件活動(dòng),在導(dǎo)出之前需要用 fopen 函數(shù)打開或創(chuàng)建一個(gè)文件,得到的文件標(biāo)識(shí)符。默認(rèn)情況下,fopen 函數(shù)打開一個(gè)文件進(jìn)行只讀訪問。你應(yīng)該指定寫入的權(quán)限或追加,如 'w' 或 'a'。
處理文件后,你需要使用 fclose(fid) 函數(shù)關(guān)閉它。
下面的例子演示了這一概念:
詳細(xì)例子
在MATLAB中建立一個(gè)腳本文件,輸入下述代碼:
% create a matrix y, with two rows x = 0:10:100; y = [x; log(x)]; % open a file for writing fid = fopen('logtable.txt', 'w'); % Table Header fprintf(fid, 'Log Function '); % print values in column order % two values appear on each row of the file fprintf(fid, '%f %f ', y); fclose(fid); % display the file created type logtable.txt
運(yùn)行該文件,顯示以下結(jié)果:
Log Function 0.000000 -Inf 10.000000 2.302585 20.000000 2.995732 30.000000 3.401197 40.000000 3.688879 50.000000 3.912023 60.000000 4.094345 70.000000 4.248495 80.000000 4.382027 90.000000 4.499810 100.000000 4.605170
更多建議: