Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 3

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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)

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Time-variying Map with Slider
Place these commands in callback after loading the data_struct variable % Convert structural array, data_struct, in...

plus de 4 ans il y a | 0

Réponse apportée
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 ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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.

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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.

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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]); ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 1

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 3

| A accepté

Réponse apportée
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...

plus de 4 ans il y a | 2

Charger plus