ParamUI_MATLAB
Version 1.1 (12,3 Mo) par
covao
Create UI from simple parameter table. Easy UI generation with LLM such as ChatGPT
- Create App with UI from simple parameter table
- Easy code generation using ChatGPT
mkdir('./paramui_demo');
cd('./paramui_demo');
websave('paramui.m','https://github.com/covao/ParamUI_MATLAB/raw/main/paramui.m');
websave('hello_paramui.m','https://github.com/covao/ParamUI_MATLAB/raw/main/hello_paramui.m');
hello_paramui;
Parameter table is containing the following columns
- Prameter Variable
- Parameter Label
- Initial Value
- Range
- Slider: [Min,Max,Step]
- Check Box: []
- Edit Box: []
- Button: 'button'
- Selecter: {'A','B'}
- FileName: '*.txt;*.doc'
- Button: 'button'
% Hello ParamUI
ParameterTable = {
'A', 'Parameter A', 0.5, [0, 1, 0.1];
'B', 'Parameter B', 150, [100, 500, 10];
'F1', 'Flag 1', true, [];
'F2', 'Flag 2', false, [];
'S1', 'Select 1','Two',{'One','Two','Three'};
'S2', 'Select 2','Three',{'One','Two','Three'};
'Name1','Name 1','Taro', [];
'Name2','Name 2','Jiro', [];
'File1','File 1','', '*.m; *.asv';
'Folder','Folder1','', 'folder';
'Run', 'Run!', false, 'button';
};
usrFunc = @(Prm) disp(Prm);
paramui(ParameterTable, usrFunc);
pu = paramui(ParameterTable);
while(pu.IsAlive)
disp(pu.Prm);
pause(0.5);
end
usrFunc = @(Prm) disp(Prm);
paramui(ParameterTable, usrFunc, false);
disp(pu.Prm)
- Generate prompt of UI app using LLM Try prompt! e.g. ChatGPT, Bing Chat, Bard, MATLAB AI Chat Playground Start ParamUI Prompt Designer
Citation pour cette source
covao (2024). ParamUI_MATLAB (https://github.com/covao/ParamUI_MATLAB/releases/tag/1.1), GitHub. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Créé avec
R2023a
Compatible avec les versions R2016a et ultérieures
Plateformes compatibles
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
Version | Publié le | Notes de version | |
---|---|---|---|
1.1 | See release notes for this release on GitHub: https://github.com/covao/ParamUI_MATLAB/releases/tag/1.1 |
||
1.0 |
Pour consulter ou signaler des problèmes liés à ce module complémentaire GitHub, accédez au dépôt GitHub.
Pour consulter ou signaler des problèmes liés à ce module complémentaire GitHub, accédez au dépôt GitHub.