Matlab中匯入檔案的命令大全一

2021-07-24 14:36:51 字數 1597 閱讀 9744

1、使用uiimport函式匯入文字檔案

將人居國民總收入.txt 檔案至於當前目錄下面

>>data=uiimport('人居國民總收入.txt');

執行結果:

2、使用importdata函式匯入文字檔案資料

>> data1=importdata('人居國民總收入.txt','',2);

>> data1

data1 = 

'年份     人均國民收入          人均gdp'

'1962  70  69.79 '

3、使用dlmread  函式匯入數值資料;

dlmread  函式適用於文字檔案中的內容全部由數值資料組成,數值資料之間用分隔符分開;再匯入純數值文字檔案時比importdata有明顯速度優勢

原檔案數值:

123      2324    34235         4342        52343

1243    2345   3432            4321        53412

1           2            3                4565         5.002343

14234  25463    2              10              5

43221  0.002   0.34233   0.2434    0.4325

此處檔案儲存在f:\program files\dlmread.txt下面

檔案是從第0行第0列計數的

>> m=dlmread('f:\program files\dlmread.txt','',3,3)

m =10.0000    5.0000

0.2434    0.4325

[1 2 4 4]表示讀取檔案中從1行2列1到4行4列的資料

>> m=dlmread('f:\program files\dlmread.txt','',[1 2 4 4])

m =1.0e+04 *

0.3432    0.4321    5.3412

0.0003    0.4565    0.0005

0.0002    0.0010    0.0005

0.0000    0.0000    0.0000

>> m=dlmread('f:\program files\dlmread.txt','','c2..e5')

m =1.0e+04 *

0.3432    0.4321    5.3412

0.0003    0.4565    0.0005

0.0002    0.0010    0.0005

0.0000    0.0000    0.0000

mysql中匯入 sql檔案

以下命令均在cmd中執行 mysqldump uroot p123456 d webmeeting c test.sql 將資料庫webmeeting中的表結構匯出到c test.sql中 mysqldump uroot p123456 webmeeting 123.sql 將資料庫中所有資料匯出到...

mysql中匯入txt檔案資料的操作命令

1.首先,必須建立乙個一一對應的表 字段對應的資料的型別一一對應 假如建立乙個使用者表user create table user id int unsigned not null primary key auto incremarent,username varchar 50 not null,p...

向mysql中匯入 sql檔案

我這裡有兩個.sql檔案 1.表的.sql檔案 2.表中資料的.sql檔案。顯然我們匯入的步驟是 建立乙個資料庫 匯入表的.sql檔案 匯入表中資料的.sql檔案 建立資料庫 create database ssmdemo 使用此資料庫 此時資料庫中沒有表 use ssmdemo 將表的.sql檔案...