Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

App design GUI for Numeric/Text edit fields

조회 수: 2 (최근 30일)
Life is Wonderful
Life is Wonderful 2020년 1월 24일
마감: Life is Wonderful 2020년 1월 29일
App I want to add numeric,text and query edit button to my App.
% Requirement-1
xstart = uieditfield(app.UIAxes,'numeric'); % Get start number from app.UITable.RowName
xstop = uieditfield(app.UIAxes,'numeric'); % Get stop number from app.UITable.RowName
% Requirement-2
xstring = uieditfield(app.UIAxes,'Text'); % Get a string from t_table
% Requirement-3
xquery = query(app.UIAxes); % String search in whole structure joinedtimetable
My Code is added in the attachment with Input test data. I need help on implemention .
Thank you!!
  댓글 수: 14
Life is Wonderful
Life is Wonderful 2020년 1월 29일
편집: Life is Wonderful 2020년 1월 29일
Could you reframe the question into something that doesn't require using the GUI?
How to provide input's from User GUI
  • Numeric value
  • Text character ( would prefer autotype from read input file table content ( please see the attachment matfile.ziip)
I have a prototype code
prompt = {'Enter start Index:','Enter stop Index:','Enter search phrase:'};
xstart = 'Input';
xstop = 'Input';
dims = [1 35]; % diagBox size-Don't alter
definput = {'20','30','MyString'};
UserInput = inputdlg(prompt,xstart,dims,definput);
Start_Index = str2double(UserInput{1}); % Number
Stop_Index = str2double(UserInput{2}); % Number
Text_Phrase = UserInput{3}; % Text char
Life is Wonderful
Life is Wonderful 2020년 1월 29일
I got the right implementation now. I think I can close this issue now
Thank you very much for your help!!

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by