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

1 次查看(过去 30 天)
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