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

5 ビュー (過去 30 日間)
José Felipe Serna
José Felipe Serna 2024 年 7 月 30 日
編集済み: Pavan Sahith 2024 年 7 月 31 日
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.

採用された回答

Pavan Sahith
Pavan Sahith 2024 年 7 月 30 日
編集済み: Pavan Sahith 2024 年 7 月 31 日
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 件のコメント
José Felipe Serna
José Felipe Serna 2024 年 7 月 30 日
Thanks a lot for your time and explanation! I will try that method!

サインインしてコメントする。

その他の回答 (1 件)

SACHIN KHANDELWAL
SACHIN KHANDELWAL 2024 年 7 月 30 日
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!

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by