Answered
How can I label the highest peak point in plottted figure ?
Hi, As suggested youcan use max to find the highest peak point. Here's a link to a helpful similiar question: finding maximum ...

nästan 3 år ago | 0

Answered
How can I connect different callbacks to each option of a toggle button in app designer?
Hi, From my understanding, you want to call different functions based on toggle button selected. You can use SelectionChangedf...

nästan 3 år ago | 0

Answered
how to save data in app designer then call back that data to use again?
Hi, One approach is that. While closing the app, in the UIFigureCloseRequest callback, you can save all the required data in a...

nästan 3 år ago | 0

| accepted

Answered
How to find angle in equcation
Hi, You can use solve function from symbolic math toolbox to solve equations and obtain the values of variables. Refer to the ...

nästan 3 år ago | 0

Answered
produce a code for GUI
Hi, I see that all the EditFields names are similar, distinguishing with a number. I suppose the properties names for those Ed...

nästan 3 år ago | 0

Answered
Creating Buttons Tabs and Panels from Input Number
Hi, You can do it this way. Create a private property allComps, use it as a structure to hold arrays for tabs, panels and butt...

nästan 3 år ago | 0

Answered
How do I change the dimensions of a UItable through edit field boxes?
Hi, I understand that you want to take the number of rows and columns as inputs from edit boxes and create a table of that size...

nästan 3 år ago | 0

Answered
how to erase a plot in appdesigner
Hi, While changing the datatype and plotting the corresponding data, you can clear the axes and plot so that the previous plot...

nästan 3 år ago | 0

Answered
Plotting a nice function
Hi, The 3rd argument(Z) to the surf function should be a matrix with atleast 2 rows and 2 columns. In this line of code, surf...

nästan 3 år ago | 0

Answered
Change the Color of the Switch in the app designer?
Hi, Currently we do not support Color property for Switch components. I have brought this issue to the notice of the concerned ...

nästan 3 år ago | 2

Answered
I am using appdesigner f=for my college project PM WAVE but when I am trying to plot the wavefrom from simulink i am getting error data must be numeric....
Hi, Please check the datatype of values in simout.Modulating_signal. Plot function can only take numeric values, datetime, dura...

nästan 3 år ago | 0

Answered
Open and close a panel in matlab GUI by clicking on a pushbutton
Hi, When you are trying to place one panel over other in the same position , there's a possibilty that you end up placing secon...

nästan 3 år ago | 0

Answered
Spinner doesn't stay on TabGroup
Hi, Could you please specify the MATLAB version you are using? Thanks!

nästan 3 år ago | 0

Answered
Contour plot error in code
Hi, Permute function rearranges the dimensions of an array(t2m) in the order specified by the vector i.e [2,1,3] in your case. ...

nästan 3 år ago | 1

| accepted

Answered
Latitude and Longitude are not shown complelety in geobubble !!
Hi, The datatips for geobubble chart can not be customized ,so we can not modify the data tip to display the entire value. Ins...

nästan 3 år ago | 0

Answered
END misunderstood in MATALAB APP
Hi, I understand that clicking on the 'if' is highlighting the wrong end. This issue is fixed in R2020a Update2.

nästan 3 år ago | 0

| accepted

Answered
Set font size for point ROI label
Hi, Currently, we do not have any argument to set the font size for the label in drawpoint function. I have brought this issue ...

nästan 3 år ago | 1

Answered
xlim is not working with the limitmethod option, and how to change its default behaviour?
Hi, The feature LimitMethod for axes is introduced in R2021a. You are getting this error since you are using R2020b. Refer to ...

nästan 3 år ago | 1

| accepted

Answered
Reading multiple editable text boxes.
Hi, 1. Create a property editFieldsArray in the app. If you want to use a variable across the app, you need to declare it ...

nästan 3 år ago | 0

Answered
How i do Taylor series summation method?
Hi, Refer to this similar question https://www.mathworks.com/matlabcentral/answers/647608-how-i-do-taylor-series-summation-meth...

nästan 3 år ago | 0

Answered
how to Plot improved Euler's Method
Hi, When you try to plot a line with scalar inputs, the plot doesn't show up in the figure unless you use a Marker like *, +, ....

nästan 3 år ago | 0

| accepted

Answered
Check for missing argument or incorrect argument data type in call to function 'new'.
Hi, The reason behind the error is that, You are using 2 different names for function name and file name i.e new and Ve. In ...

nästan 3 år ago | 0

Answered
Combining Multiple Scatter plots into one figure
Hi, If you want to combine multiple scatter plots into a figure, you can try it out this way. close all; for i= 1:3 h(i...

nästan 3 år ago | 0

Answered
How can i export data from simulink to workspace?
Hi, There are several ways in which you can export your Simulation data to Matlab workspace. Refer to this documentation: Expo...

nästan 3 år ago | 0

Answered
How to plot a cell in App Designer?
Hi, If you want to plot in App Designer, You need to create an UIAxes in the UIFigure of the App. Plot the data in the UIax...

nästan 3 år ago | 1

Answered
how to save matrix of class double in to an image?
Hi, You can use imwrite function to write data of specific types into a specified graphic file(various formats supported). You...

nästan 3 år ago | 0

| accepted

Answered
Delete all data points from the structure
Hi, From my understanding, you want to certain datapoints in the structure satisfying either of the two conditions i.e (temp < ...

nästan 3 år ago | 0

Answered
Double Scalar error. I am trying to figure out this error message. Any help appreciated.
Hi, This error message is displayed when you try to assign a value that is out of the limits specified for a Numeric Edit Field...

nästan 3 år ago | 0

Answered
I am trying to make a GUI which can display map data on the Title of the App.
Hi Kunal, The Pan and Zoom interactivities for Geographic axes can be set using the Interactions property. For example, gx = ...

nästan 3 år ago | 0

Answered
Loop in a Function
Hi, If you want to get different value of taus for each iteration consider placing U=rand; in the loop. Else it will be same ...

ungefär 3 år ago | 0

Load more