필터 지우기
필터 지우기

How do I link between two radio button and a button in gui?(steganography)

조회 수: 1 (최근 30일)
M111111
M111111 2015년 2월 26일
답변: Image Analyst 2015년 2월 26일
Preferable example of a project please. I mention that this project using steganography. my project to use multiple algorithms.

답변 (1개)

Image Analyst
Image Analyst 2015년 2월 26일
In the callback for your button, just get the radio button states and do different algorithms according to what was selected
rad1 = get(handles.radio1, 'value');
rad2 = get(handles.radio2, 'value');
rad3 = get(handles.radio3, 'value');
if rad1
% Run algorithm 1
elseif rad2
% Run algorithm 2
elseif rad3
% Run algorithm 3
end

카테고리

Help CenterFile Exchange에서 State-Space Control Design and Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by