MATLAB 設定 資料游標的精度

2021-10-09 21:44:04 字數 802 閱讀 7031

1、新建乙個名稱為newcallback.m的m檔案,**如下:

function output_txt = myfunction(obj,event_obj)

% display the position of the data cursor

% obj currently not used (empty)

% event_obj handle to event object

% output_txt data cursor text string (string or cell array of strings).

pos = get(event_obj,'position');

output_txt = ;

% 此處的pos(2)後的數字,即y軸的資料游標的顯示精度位數

% if there is a z-coordinate in the position, display it as well

if length(pos) > 2

output_txt = ['z: ',num2str(pos(3),5)];

% 此處的pos(3)後的數字,即z軸的資料游標的顯示精度位數

end

2、將該檔案儲存在matlab的當前資料夾目錄下

3、輸入畫圖**,並在figure下輸入以下**:

dcm_obj = datacursormode(gcf);

set(dcm_obj,'updatefcn',@newcallback)

游標的使用 從游標提取資料

use northwind go 宣告乙個游標 declare cursor cursor for select productid,productname,categoryid from products where categoryid 2 開啟游標 open cursor 定義接收游標屬性的變...

資料庫游標的應用

關聯式資料庫中的操作會對整個行集產生影響。由select語句返回的行集包括所有滿足該語句where子句中條件的行,由語句所返回的完整的行集被稱為結果集。應用程式,特別是互動式聯機應用程式,並不總能將整個結果集作為乙個單元來有效地處理,這些應用程式需要一種機制以便每次處理一行或一部分行,游標就是提供這...

資料庫游標的編寫

1 定義游標 declare 游標名 cur youbiao cursor fast forward for select from 表名 fast forward 最快的游標 2 開啟游標 open 游標名 cur youbiao 2.1 對游標的操作 將每條資料讀取並輸出 2.1.1將游標向後移...