Questions tagged [matlab-app-designer]

The App Designer, introduced in R2016a, is a graphical tool for creating MATLAB apps with an interactive GUI. Use this tag only for specific MATLAB App Designer questions, and not for questions involving MATLAB GUIDE.

MATLAB App Designer is a graphical tool for creating apps. It features various new elements for user interaction, such as buttons, knobs and gauges.

The App Designer is a different, but complementary approach to the MATLAB GUIDE. While GUIDE has very rich plotting options, including 3D visualizations, the App Designer only features simple 2D plots. On the other hand, App Designer has more elements for user interaction.

Additional information on the App Designer are:

Related tags:

  • for general, not App Designer specific questions.
  • for GUIDE specific questions.
  • for questions about programmatic creation and manipulation of GUIs.
194 questions
1
vote
0 answers

Connect Microsoft Access Database with MATLAB AppDesigner

I am working on a project where I am trying to create a GUI App with MATLAB AppDesigner. This App should be able to fetch data from Microsoft Access Database (.accdb). Can someone help me how to connect the Database with AppDesigner? I have explored…
1
vote
1 answer

uiswitch error (Arrays have incompatible sizes for this operation) in App designer - Matlab

I am trying to add a switch in app designer using this code: function SwitchValueChanged(app, event) value = app.Switch.Value; if (value == 'Off') app.SaveOIButton.Enable = 'Off'; …
alirazi
  • 159
  • 8
1
vote
1 answer

Close/Delete uiprogressdlg of Matlab AppDesigner on error

I want to know how to close the "waitbar" equivalent of the AppDesigner called "uiprogressdlg" when an error happend inside any callback-functions. I dont want to implement any try-catch-elements. I tried to use the "KeyPressFcn",…
iijoexx
  • 11
  • 1
1
vote
1 answer

How to get an image and a plot to align nicely in Matlab Application Designer

I am building a demonstration application using the matlab application designer. It has two axes. One shows an image. The other shows the profile of the image, and the derivative of the profile. In the example below, I have a 200 column, by 5 row…
John
  • 5,735
  • 3
  • 46
  • 62
1
vote
0 answers

Is there a way to fetch files inside a matlab uihtml component?

I am using a uihtml component inside a uifigure that loads a HTML file in its HTMLSource property. The HTML file just tries to fetch the contents of a text file located in the same folder, and outputs them inside a div component. The body in the…
LordTumnus
  • 36
  • 3
1
vote
1 answer

Is there way to display in MATLAB App Designer UIAxes a boxplot?

I am looking for a way to display in UIAxes boxplots. I thought about saving the plots in a .png format and then using the imshow function of MATLAB. However I would prefer to avoid this process as the result is not the best.
1
vote
1 answer

How can I export a Matlab 2D array in Conditional Formatted table in pdf using MATLAB Report Generator?

I have some 2D arrays in Matlab. And I wanted to export this array in pdf in 3 Colour scheme Conditional Formatted (Mostly used function in Excel) Table as shown below. How can I do that in MATLAB? I have written a script to do that. But I can't…
Masood Salik
  • 119
  • 1
  • 1
  • 10
1
vote
0 answers

A listener for changing CurrentFrame in implay Matlab?

I am trying to create listener for implay in Matlab. I would like to observe the change in CurrentFrame Value. It is possible? This is what I have already tried: app.myHandle = implay(app.filename1,app.framesPerSecond); myControls =…
1
vote
2 answers

MATLAB App Designer hold on/off throwing warnings

I'm beginner and trying to use polarplot and hold on/off in MATLAB App Designer. Now to use this in app designer, we need to create the polar axes by calling the polaraxes function in the app designer panel container. I tried this which is working…
Rohit
  • 99
  • 2
  • 12
1
vote
0 answers

How can I save/load App Designer app object in MATLAB?

I am creating an app which starts by creating a large Gridlayout (60,16) that contain two columns of UIButtons and the rest is UITextare. I am using a button to create the gridlayout (function CreateGridButtonPushed(app, event) in the below code).…
Birch78
  • 71
  • 10
1
vote
0 answers

Why received from add_exec_event_listener data showed in new gui in matlab app designer?

I am trying to get real-time data from simulink model and display it on gui, so I am using add_exec_event_listener in Simulink model callback as written here:…
newbie
  • 11
  • 4
1
vote
1 answer

how to select specific columns or rows of a table in appdesigner of matlab?

I Want to select a row or column of a table with the edit field component and do some actions on these data and show the result in the first cell of table ([1,1]) rowNames={1:100} columnName={A:ZZ} like this: sum(A1:A20) or Max(AA5:AA10) I want to…
Learner
  • 39
  • 6
1
vote
1 answer

Error in save as type using uiputfile - Matlab

In app designer I have two buttons one to declare the working folder: function setSaveLocationButtonPushed(app, event) app.path = uigetdir() end The other one to save an image function saveButtonPushed(app, event) pathSave…
jane
  • 567
  • 2
  • 12
1
vote
1 answer

How to set the focus on a specific element in a uifigure?

I have an application where an SVG image is presented to the user, and they need to fill in two edit fields based on what is presented. Since the process needs to be repeated many times, I concluded it would be best for speed and efficiency if user…
Dev-iL
  • 23,742
  • 7
  • 57
  • 99
1
vote
0 answers

How to get constructor values in another class in matlab?

I am developmenting a software using App Designer in Matlab. First, the user input some values in Edit Texts, in App Designer. After this, I send this values to a constructor class called Class_TNT. So, I am trying conect this constructor with…