open('figname.fig');
h=get(gca,'children');
data=get(h,'cdata');
2 如果你的fig檔案中影象是由單條曲線繪製而成,比如說plot命令生成的,通過以下方式輸出橫座標,縱座標的取值
open('figname.fig');
h_line=get(gca,'children');%get line handles
xdata=get(h_line,'xdata');
ydata=get(h_line,'ydata');
3 如果你的fig檔案中影象是由三維單條曲線繪製而成,比如說plot3命令生成的,通過以下方式輸出x,y,z 座標的取值
open('figname.fig');
h_line=get(gca,'children');%get line handles
xdata=get(h_line,'xdata');
ydata=get(h_line,'ydata');
zdata=get(h_line,'zdata');
4 如果你的fig檔案中影象是由多條曲線繪製而成,比如說plot命令生成的,通過以下方式輸出橫座標,縱座標的取值
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;
MATLAB之從fig檔案中提取資料
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,xda...
從XML檔案中讀取資料
using system using system.data using system.configuration using system.web using system.web.security using system.web.ui using system.web.ui.webcontro...
Python 從檔案中讀取資料
學習python時,發現在使用with open pi digits.text as file object時,使用相對路徑,總是出現notfoundfileerror的錯誤,後來想到使用絕對路徑。書中提到的在linux環境中路徑使用的是斜槓 在windows環境中使用的是反斜槓 而經過實踐,發現只...