matlab的資料輸出到excel檔案裡

2021-04-13 01:52:13 字數 2368 閱讀 8747

1樓:匿名使用者

用xlswrite('a.xls',a)命令不會當一維陣列處理的,存完後是2行3列的,你再試試看

2樓:春禧渾敏麗

你願bai意用csvwrite嗎,保du存成zhicsv檔案,一dao樣版預設用權excel開啟

csvwrite

write

acomma-separated

value

file

syntax

csvwrite('filename',m)csvwrite('filename',m,row,col)description

csvwrite('filename',m)writes

matrix

minto

filename

ascomma-separated

values.

csvwrite('filename',m,row,col)writes

matrix

minto

filename

starting

atthe

specified

rowand

column

offset.

therow

andcolumn

arguments

arezero-based,

sothat

row=0

andc=0

specifies

thefirst

value

inthe

file.

怎樣將matlab中的資料輸出到excel中

3樓:匿名使用者

使用 xlswrite()函式可以將matlab中資料儲存到excel中,請看下面例子:

>> data = magic(5) % 示例資料data =

17    24     1     8    1523     5     7    14    164     6    13    20    2210    12    19    21     311    18    25     2     9>> xlswrite('test.xls',data) % 儲存excel檔案,不寫完整路徑則表示當前目錄

4樓:匿名使用者

先建立一個空矩陣或zeros,再將資料存入,最後匯出就行!

就像;a=zeros(10,10);

a(i,j)=num;

xlswrite('c:\documents and settings\administrator\桌面\空隙率資料.xls',a,'shuju');

怎麼把matlab中處理的資料存入到excel中

5樓:

可以直接用xlswrite命令。

data=randn(100,1); % data為需要儲存的資料xlswrite('d:\write2excel.xls',data,'data1');%資料儲存至d盤根目錄下

% d:\write2excel.xls 為儲存路徑及檔名% data 為需要儲存的資料

% data1為儲存至excel中的表單名

6樓:匿名使用者

help xlswrite

matlab怎麼把計算的資料儲存到excel裡面?

7樓:匿名使用者

將資料儲存到excel檔案

xlswrite(xlsfile, data, sheet, range); % sheet 和 range可以不指定

如: xlswrite('d:\test.xls', data, 'sheet1'); % 將data寫入test.xls的工作表sheet1中

從excel檔案中讀資料, 不建議一行一行讀, 效率太低, 可直接用xlsread把工作表中的內容全部讀出來

[n, t, rawdata] = xlsread(xlsfile, sheet, range); % sheet 和 range可以省略

xlsfile是excel檔案的地址,sheet是excel檔案中指定的工作表, range是工作表中要讀取資料的範圍

n是數字型資料, t是檔案型資料, rawdata是所有資料(cell型)

如[~, ~, rawdata] = xlsread('d:\tmp.xls', 'sheet1'); % 把tmp.

xls的工作表sheet1中的內容全部讀出至rawdata中, rawdata就是工作表第i行,第j列的資料

關於xlsread和xlswrite的更多用法可以檢視matlab的幫助

matlab迴圈並將每次迴圈的結果輸出到同一中

問題bai二 fid fopen data.txt a 新建 若不du 存在 或開啟一個名為data.txt的檔案for fprintf fid,5d d d為每 zhi次要寫入的數dao 據,專 5d 控制資料寫入的格式 endfclose fid 操作屬 完成後,關閉檔案 matlab中怎麼實現...

matlab裡fprintf輸出的問題

產生列向量的 原因抄是matlab矩陣的襲標註其實就 bai是按列分配的,這一點du和c相反可以zhi看看譚浩強的c陣列那一章dao 其次 a rand 3,5 fid fopen g 學習 file.txt w fprintf fid,g g g g g r n a 每五個元素換行 fclose ...

2臺16路海康的硬碟錄影機如何輸出到顯示器上

不能實現輸出到一個顯示器上。現在市面上還沒有能實現這個功能的裝置.想實現的話別用嵌入式硬碟錄影機,用插卡式的,組裝一臺32路硬碟錄影機,只能這樣了。其中矩陣的功能是把輸入的影象一路一路的按照要求顯示到監視器上,而不是同時顯示.這個要求是實現不了的,你配這臺畫面轉換器根本起不到任何作用。不能,矩陣的功...