Making a small app in matlab
Mostrar comentarios más antiguos
I would like to make small app with matlab where I put few informations and through my matlab commands calculate it.

App should look like that where I put 3 numeric informations, and 3 file names, and than the app calculate it and export needed excel file.
I attached my matlab code with some guide.
4 comentarios
Geoff Hayes
el 10 de Jul. de 2018
Matija - please clarify what your question is. Have you created the GUI? If so, are you using GUIDE, App Designer, or are you programmatically creating the GUI?
Matija Kosak
el 10 de Jul. de 2018
Matija Kosak
el 10 de Jul. de 2018
Matija Kosak
el 10 de Jul. de 2018
Respuesta aceptada
Más respuestas (1)
anfel
el 2 de Feb. de 2025
Editada: Walter Roberson
el 2 de Feb. de 2025
methods (Access = private)
% Value changed function: AmplitutdeSlider
function AmplitutdeSliderValueChanged(app, event) %THIS CALLBACK fcn will run a code after a GUI event.
value = app.AmplitutdeSlider.Value;
plot(app.UIAxes, value*peaks)
app.UIAxes.YLim = [-1000 1000];
end
end
Categorías
Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!