Borrar filtros
Borrar filtros

¿How can I transform an already working code to a GUI?

41 visualizaciones (últimos 30 días)
José Felipe Serna
José Felipe Serna el 30 de Jul. de 2024 a las 12:27
Editada: Pavan Sahith el 31 de Jul. de 2024 a las 8:18
I have a code that works fine and gives me the expected outputs. I don´t know how to transform that code into an app that asks me for the inputs and returns the plot of such result.

Respuesta aceptada

Pavan Sahith
Pavan Sahith el 30 de Jul. de 2024 a las 13:40
Editada: Pavan Sahith el 31 de Jul. de 2024 a las 8:18
Hello Jose,
I think there isn't a fully automated way to convert MATLAB code directly into an app, but MATLAB App Designer provides a straightforward environment to manually create an app that leverages your existing code.
For example, if you have a MATLAB function that takes two inputs and generates a plot:
function myFunction(input1, input2)
x = linspace(-10, 10, 100);
y = input1 * x + input2;
plot(x, y);
title('Result Plot');
xlabel('X-axis');
ylabel('Y-axis');
end
In App Designer, you can use some components and add callbacks which call your function:
  1. Add two Numeric Edit Field components for the inputs.
  2. Add a Button component to trigger the calculation.
  3. Add an Axes component to display the plot.
To learn how to call a function from within a callback, you can refer to these similar MATLAB Answers:
You can also refer to this documentation to know more about how to create a simple app:
Hope this helps you in moving forward
  1 comentario
José Felipe Serna
José Felipe Serna el 30 de Jul. de 2024 a las 16:31
Thanks a lot for your time and explanation! I will try that method!

Iniciar sesión para comentar.

Más respuestas (1)

SACHIN KHANDELWAL
SACHIN KHANDELWAL el 30 de Jul. de 2024 a las 13:11
I understand that you want to create an app that follows the desired workflow. I would recommend utilizing the MATLAB App Designer feature for your use case.
If you would like to learn more about App Designer, you might find the following MathWorks Onramp course helpful:
Additionally, you can explore how to create a simple app by referring to this documentation:
Hope this helps!

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Productos


Versión

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by