Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
Preferable example of a project please. I mention that this project using steganography. my project to use multiple algorithms.

Respuestas (1)

Image Analyst
Image Analyst el 26 de Feb. de 2015
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

Categorías

Más información sobre State-Space Control Design and Estimation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by