Respondida
How to plot a best fit curve to my data points?
If you have the Curve Fitting Toolbox, you can use the Curve Fitting app after you import your data into the workspace. Within t...

alrededor de 4 años hace | 0

Respondida
App Designer | hold on does not work as expected
I believe you need to specify the axes of your hold on. Please let me know if this works. hold(app.fullaxes,'on'); colormap(ap...

alrededor de 4 años hace | 3

| aceptada

Respondida
Point to Images in App Folder
I would suggest packaging your app before sharing it with others. See more information here. Alternatively, you could add the...

alrededor de 4 años hace | 0

| aceptada

Respondida
How to clear a plot in app designer to plot it again with new results?
It seems like you are creating new uiaxes on top of the previous ones. You can go through your code to make sure you aren't crea...

alrededor de 4 años hace | 0

| aceptada

Respondida
Creating and managing subplots App Designer Matlab
1. Do you know what line in the code generates this error? 2. If you do not want the message, "Current plot held" to be displ...

alrededor de 4 años hace | 0

| aceptada

Respondida
I want to take an array in matlab appdesigner i.e. A=[5 10 15 20] from user and then use for further calculation. how can i do that?
Please see app attached. You can use a text edit field to accept a numeric array as a string. Then you can convert it to a numer...

alrededor de 4 años hace | 0

| aceptada

Respondida
how to use linkprop with custom interactions in appdesigner?
I was able to replicate the same issue with your code. Is there a reason that you aren't using UIAxes? I was able to get the ...

alrededor de 4 años hace | 0

Respondida
Use data calculated in a matlab programm in gui
Is this program written in script/function MATLAB files? You can call these scripts/function within App Designer or you could wr...

alrededor de 4 años hace | 0

Respondida
How to create a delete button for each parent in a nodetree in the App Designer?
You could create a pushbutton that can delete the seleced node. delete(app.Tree1.SelectedNodes)

alrededor de 4 años hace | 0

| aceptada

Respondida
Time-variying Map with Slider
Place these commands in callback after loading the data_struct variable % Convert structural array, data_struct, in...

alrededor de 4 años hace | 0

Respondida
App Designer - Code that runs whenever a callback function is executed
You can create a function/script MATLAB file that you can call from MATLAB. Alternatively, you can create a function within the ...

alrededor de 4 años hace | 0

Respondida
I want to display a table in my app designer after clicking a button. Can anyone help me with it ?
Attached are two different apps that show two different approaches. In the LoadandPlotExcelData app, I created a uitable in Ap...

alrededor de 4 años hace | 0

Respondida
I have to build a gui to import a large excel file and user could select any columns to plot
See answer in here. You can add toolbar and create callbacks to the app that is attached to the answer linked.

alrededor de 4 años hace | 0

| aceptada

Respondida
develop a app with appdesigner to plot multiple graph from excel sheet
sanket, Please see the app attached. Let me know if you have any more questions.

alrededor de 4 años hace | 0

| aceptada

Respondida
app designer brining in variables from a script
Alex, I have attached an app that loads Excel data as a table and then calls a live function called "TableConverter" that rep...

alrededor de 4 años hace | 1

| aceptada

Respondida
Creating subplots in a for cycle with App Designer
I created an app that generates tabs and subplots based on the dimensions of matrix a. Please see the app attached. I did not us...

alrededor de 4 años hace | 1

| aceptada

Respondida
Finding elements in string or cell array with common strings
A={'blah_12_blah' 'blah_456_blah' 'blah_789_blah' 'blah_NPQZ_blah'} B={'blah_NPQZ_blah' 'blah_135_blah' 'blah_579_blah' 'blah_1...

alrededor de 4 años hace | 1

| aceptada

Respondida
Weird bug regarding UIpanel visibility
I made the following app in R2022a (see attached). I could not replicate the problem. There could have been a possible issue wi...

alrededor de 4 años hace | 1

Respondida
Reading value from Excel file in App Designer
Please see the app attached. I used uigetfile to select the file and then xlsread to extract the value of interest from the Exc...

alrededor de 4 años hace | 0

Respondida
How can I stop imagesc from opening empty figure windows in app designer ?
If you look at the documentation for uistack, it states, "The uistack function is not supported in App Designer or in apps creat...

alrededor de 4 años hace | 0

| aceptada

Respondida
what is wrong in my code..?I am not able to repeat result for all last names..what i should edit in my code
LastName = {'Sanchez';'Johnson';'Li';'Diaz'}; Age = [38;43;38;40]; Smoker = [10;20;30;60]; indicator1 = logical([0;0;1;1]); ...

alrededor de 4 años hace | 0

Respondida
Calling a CloseFcn with 'app' as an argument when closing uialert dialog box in App Designer
Joes, Please see the app attached. You need to place the Restore_Values function within the callback function used to execute...

más de 4 años hace | 1

| aceptada

Respondida
Replace values in a 3D array, from a condition in a 2D array
%Create A A = rand(9,9,12); % use table2array(A) if A is a table array %Create z z=rand(9); z(z<0.5)=0 %Create mask mask...

más de 4 años hace | 1

Respondida
Place video stream inside of app designer
Did you want to place the video on an axes with the app? Or do you want to place the video on an axes on a different UIFigure/ap...

más de 4 años hace | 0

| aceptada

Respondida
How can I change the value of a text field based on plot selection in MATLAB APP Designer?
Christian, Please see the app attached. You could create a callback function to the Axes by right clicking >Callbacks>Add ...

más de 4 años hace | 0

Respondida
Data overlapping when plotting stacked bar graphs
You can adjust your lower y limit. See how changing it affects the plots below. x = categorical({'Temp 1','Temp 2', 'Temp 3...

más de 4 años hace | 0

Respondida
How to sum a specific column in the UI Table Component using MATLAB App designer?
Please see the edited app attached. I changed the following functions: function tablefcn(app) % d2struct = str...

más de 4 años hace | 0

| aceptada

Respondida
UITable callback from another table not updating for GUI
Please see the app attached. Here are the callbacks I used in the app. Note, event.NewData is only the value you change and...

más de 4 años hace | 0

Respondida
Display pdeplot3D in Matlab App
In App Designer you need to defined the Axes. It looks like pdeplot3D does not have an input for Axes - it generates one with th...

más de 4 años hace | 3

| aceptada

Respondida
Creating mesh from volumetric array
Here I made a meshgrid and then created a 3D scatter plot with the intensity displayed as a color. % Randomly generate an volum...

más de 4 años hace | 2

Cargar más