MATLAB之從fig檔案中提取資料

2021-09-24 21:39:24 字數 953 閱讀 5950

open('figname.fig');%開啟檔案

obj=get(gca,'children');%資料儲存在obj裡面

data=get(obj,'cdata');

open('figname.fig');

h_line=get(gca,'children');%get linehandles

xdata=get(h_line,'xdata');

ydata=get(h_line,'ydata');

open('figname.fig');

h_line=get(gca,'children');%get linehandles

xdata=get(h_line,'xdata');

ydata=get(h_line,'ydata');

zdata=get(h_line,'zdata');

open('figname.fig');

lh = findall(gca, 'type', 'line');% 如果圖中有多條曲線,lh為乙個陣列

xc = get(lh, 'xdata'); % 取出x軸資料,xc是乙個元胞陣列

yc = get(lh, 'ydata'); % 取出y軸資料,yc是乙個元胞陣列

%如果想取得第2條曲線的x,y座標

x2=xc;

y2=yc;

從fig檔案中讀取資料

open figname.fig h get gca,children data get h,cdata 2 如果你的fig檔案中影象是由單條曲線繪製而成,比如說plot命令生成的,通過以下方式輸出橫座標,縱座標的取值 open figname.fig h line get gca,children...

從檔案中提取數字

程式的功能是從指定的檔案中提取所有的整數,並把它們依次存入到乙個字串中 void iostest char a 50 char b 50 istrstream sin a ostrstream sout b,sizeof b ifstream file1 w1.dat ios in ios nocr...

從 pfx 檔案中提取證書和私鑰檔案

有時需要從 windows 計算機匯出證書和私鑰,以分離證書和金鑰檔案以供其他地方使用。windows 不提供完成此過程的方法。從 windows 證書儲存中匯出證書描述了如何將證書和私鑰匯出到單個 pfx 檔案中。按照以下過程從 pfx 檔案中提取單獨的證書和私鑰檔案。獲取您匯出的檔案 例如 ce...