matlab讀取xml檔案

2021-09-24 10:31:57 字數 870 閱讀 3270

xml檔案

(%後面的是注釋,可刪除)

<?xml version="1.0" encoding="utf-8"?>

%輸入引數

outputtype  %引數名

0                    %引數

%輸入檔案路徑(這裡是)

d:\acode\areef_change detection\geotiff\yx2015.tif    %  注意:之間不要空格

d:\acode\areef_change detection\geotiff\yx2016.tif    %2

matlab讀取xml檔案

%% read xml

xmldoc = xmlread('inputparams.xml');

% 引數讀取

name_array = xmldoc.getelementsbytagname('value');

th = char(name_array.item(0).gettextcontent());

t=str2double(th);               %引數格式轉換:str轉為double型

% 影象路徑讀取

name_array = xmldoc.getelementsbytagname('list_of_file_names');

name = name_array.item(0);

name1=char(name.item(1).gettextcontent());

name2=char(name.item(3).gettextcontent());    %注意:不能是(2),(2)為回車(猜測)

可參考博文

讀取XML檔案

private void button2 click object sender,eventargs e using filestream fs new filestream filename,filemode.open,fileaccess.read n xl.name 是否有屬性 if xl.h...

xml檔案讀取

xml檔案讀取 利用庫tinyxml 示例xml 獲取對應路徑上的xml if document null tixmlelement nodeelement document rootelement 獲取根節點 tixmlelement objectelement nodeelement first...

XML檔案的讀取

creates an xmlelement from a stream xmlelement pointing to the root of the xml public static xmlelement createxmlnode stream stream xmlelement doc.doc...