Uitable get value from edit text

2 ビュー (過去 30 日間)
Fabian Marian
Fabian Marian 2018 年 1 月 29 日
Hello,
I have a project and I need to get a vector in an edit text and after that I need to do compan from that vector and after to show the matrix in a uitable. Any suggestion?

回答 (1 件)

Morteza Hajitabar Firuzjaei
Morteza Hajitabar Firuzjaei 2018 年 1 月 29 日
see below:
function logNames
% Create UI figure and components
fig = uifigure('Position',[100 100 410 400]);
loglist = uitextarea(fig,...
'Position',[134 49 150 277],...
'Editable','off');
namefld = uieditfield(fig,'text',...
'Value', 'Bob Langley',...
'Position',[134 367 100 22],...
'ValueChangedFcn',@(namefld,event) nValChanged(namefld,event,loglist));
end
% Create ValueChangedFcn callback
function nValChanged(namefld,event,loglist)
newvalue = event.Value;
previousValue = event.PreviousValue;
loglist.Value = [previousValue; loglist.Value];
end
Morteza Hajitabar Firuzjaei

カテゴリ

Help Center および File ExchangeOctave についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by