how do you put condition in GUI?

18 ビュー (過去 30 日間)
Bedivere Cabahug
Bedivere Cabahug 2022 年 7 月 13 日
コメント済み: Bedivere Cabahug 2022 年 7 月 13 日
% I would like to put a condition that t3 is greater than t4,t2, and t1,t2 is less than t4 and t2>t1
% --- Executes on button press in Calculate.
function Calculate_Callback(hObject, eventdata, handles)
% hObject handle to Calculate (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of Calculate
t1=str2double(get(handles.T1,'string'));
t2=str2double(get(handles.T2,'string'));
t3=str2double(get(handles.T3,'string'));
t4=str2double(get(handles.T4,'string'));
Nth=(1-((t4-t1)/(t3-t2)))*100;
set(handles.OUT1,'string',num2str(Nth));

採用された回答

Walter Roberson
Walter Roberson 2022 年 7 月 13 日
if all(t3 > [t4, t2]) && all([t1,t2] < t4) && t2 > t1
Nth = (1-((t4-t1)/(t3-t2)))*100;
set(handles.OUT1,'string',num2str(Nth));
else
handles.OUT1.String = 'Invalid inputs';
end
  1 件のコメント
Bedivere Cabahug
Bedivere Cabahug 2022 年 7 月 13 日
your god given angel :) thank you so much

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeJust for fun についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by