Ahora está siguiendo esta publicación
- Verá actualizaciones en las notificaciones de contenido en seguimiento.
- Podrá recibir correos electrónicos, en función de las preferencias de comunicación que haya establecido.
[A, B, C, ...] = PULLDOWN(TITLE, X, Y, Z, ...) will invoke a simple pulldown menu with title TITLE, and lists of choices in cell arrays, X, Y, Z, ..., and provides the choice index for list X in A, the choice index for list Y in B, etc.
CHOICES = PULLDOWN(TITLE, X, Y, Z, ...) does the same thing, except CHOICES is a numerical array containing all the individual choice indices from X, Y, Z, etc.
[...] = PULLDOWN(..., V) does the same thing, but will initialize the pulldown menus to the values in vector V. V may have fewer or more choices than the number of pulldown menus.
Examples:
[letter, number] = pulldown('Test', {'A', 'B', 'C'}, num2cell(1:5))
choices = pulldown('Mission', {'117', '116', '115', '121', '114'})
% initialize to choices 'B' and 4
choices = pulldown('Test', {'A', 'B', 'C'}, num2cell(1:5), [2 4])
Citar como
Kevin Crosby (2026). Standalone Pulldown Menus (https://es.mathworks.com/matlabcentral/fileexchange/28443-standalone-pulldown-menus), MATLAB Central File Exchange. Recuperado .
Agradecimientos
Inspiración para: loadFields from mat files
Información general
- Versión 1.0.0.0 (2,39 KB)
Compatibilidad con la versión de MATLAB
- Compatible con cualquier versión
Compatibilidad con las plataformas
- Windows
- macOS
- Linux
| Versión | Publicado | Notas de la versión | Action |
|---|---|---|---|
| 1.0.0.0 |
