matlabgui介面程式設計如何匯入tt檔案

2021-03-10 17:01:34 字數 974 閱讀 9765

1樓:

1、在gui上建立乙個bai按鈕button2、為按鈕button新增du單擊事zhi件,用來匯入daotxt檔案

3、在單擊事件中設定要打內開的檔案位址,以及容讀取操作設定4、具體**如下

function filename=onfileopen()%untitled1 summary of this function goes here

%  detailed explanation goes here[filename,filepath]=uigetfile('*.txt','開啟檔案');%gui中開啟檔案

%file=[filename,filepath];

%fid=fopen(file,'rt');%read txtfilep=strcat(filepath,filename);

%filep

workimg=imread(filep);

%提取檔案內容

imshow(workimg);

2樓:匿名使用者

function pushbutton1_callback(hobject, eventdata, handles)% hobject handle to pushbutton2 (see gcbo)% eventdata reserved - to be defined in a future version of matlab% handles structure with handles and user data (see guidata)[filename,pathname] = uigetfile('*.txt','select the data file'); file=fullfile(pathname,filename); data=load(file) ;axes(handles.axes1); plot(data);試試看吧

3樓:匿名使用者

我用load匯入,但是總出錯,同求大牛解答

急急急matlabgui介面設計

首先設計好gui介面,將各 個控制項布局好,同時定義每個控制項的tag,以方便呼叫 其次定義好程式呼叫的資料,通常是使用global變數 最後在控制項的callback函式中放入你要呼叫的函式,以響應動作 詳細操作還需知道你想實現的具體功能。一兩句也說不清楚,建議你看看這個資料 把m檔案裡輸出的變數...

MATLABGUI中如何在edit中顯示文字加變數

先用字串合併函式,strcat,然後再顯示。如下 str strcat a num2str a set handles.edit1,string str 你可以用乙個矩陣存放你的字串如 a num2str a 語法錯誤你就自己改一下,再就是確認handles控制代碼,以及edit控制項的tag是ed...

學程式設計如何,如何自學程式設計?

學程式設計有三條路可以走。第一,就是好好做技術,成為技術大牛。第二,就是慢慢的往管理層發展。第三,找到自己興趣相投的朋友,一起創業,網際網路創業相對於其他行業來說還是稍微容易一些的,創業成本相對於其他行業來說要低一點,只需要幾個人和幾台電腦就好了。在你成為管理層和自己創業之前,你都必須要好好學技術。...