MATALB學習筆記 讀取和寫入Excel

2021-08-14 07:44:44 字數 861 閱讀 7781

讀取excel:

xlsread('excel路徑+excel名稱')

如果excel檔案和編寫程式的檔案在同一資料夾,不需要填寫路徑。

例1:讀取excel

a=xlsread('工作簿1')

例2:讀取指定的sheet

b=xlsread('工作簿1','sheet2')

例3:讀取指定的sheet中的指定的行或列

c1=xlsread('工作簿1','sheet2','a1:a3')
c2=xlsread('工作簿1','sheet2','a1:c1')

例4:讀取指定的sheet中的指定的區域

d=xlsread('工作簿1','sheet2','b2:c3')

寫入excel:

xlswrite('excel路徑+excel名稱',需要輸入的矩陣的名字)
如果excel檔案和編寫程式的檔案在同一資料夾,不需要填寫路徑。

例5:寫入excel

test=[1 2 3;4 5 6;7 8 9];

xlswrite('工作簿2.xlsx',test)

例6:寫入到指定的sheet

test=[1 2 3;4 5 6;7 8 9];

xlswrite('工作簿2.xlsx',test,'sheet2')

xml讀取和寫入

1 需要的命名空間 using system.collections.generic using system.io using system.text using system.xml 3 寫入後的xml檔案樣式 1神州俠侶 5045.55 tiger 以下 為自動建立序號時使用,若你的資料來源本...

檔案讀取和寫入

open 返回乙個檔案物件,open filename,mode f open workfile w 第乙個引數是包含檔名的字串,第二個引數可以是包含一些字元的字串 r 僅讀取檔案,w 僅寫入檔案,a 開啟檔案以進行新增的模式 r 開啟檔案進行讀取和寫入,模式引數是可選的。r 如果省略,將被假定。b...

讀取和寫入Cookies

region 讀取或寫入cookie 2 3 寫cookie值 4 5 名稱 6 值 7 public static void writecookie string strname,string strvalue 8 14 cookie.value urlencode strvalue 16 17 ...