已回答
Plot system of equations
You can create function handles to the named or anonymous functions. For example, for first equation in your system of equatio...

5 years 前 | 0

已回答
How to import Excel data in Matlab GUI?
You can use following code to load and plot the data from excel file. function pushbutton1_Callback(hObject, eventdata, handles...

5 years 前 | 1

| 已接受

已回答
how to fit 3d points with a non linear curve?
There is a similar question which may be of relevance to you: https://www.mathworks.com/matlabcentral/answers/351777-how-to-fit...

5 years 前 | 0

已回答
how to increase the number in for loop as i explained below??
You can create multidimensional array t to store t1, t2, ..t24 using “cat” function t=cat(3,t1,t2,..t24); Now you can access t...

5 years 前 | 0

已回答
How to combine several .mlapp in MATLAB App Designer? [2017b]
There is a similar question which may be of relevance to you: https://www.mathworks.com/matlabcentral/answers/273805-how-to-sha...

5 years 前 | 0

已回答
interp1 measurements drifting
As you mentioned SS1 and SS2 are arrays of 32 columns, but in the line K = interp1(SS1(1: end,1), SS2(1: end,1), RefernceTime...

5 years 前 | 1

已回答
Creating an interface with Guide
You can add following code in OpeningFcn callback for creating a plot h = [67, 32, 67, 87, 45, 89]; t = 1:6; axes(hand...

5 years 前 | 0

| 已接受

已回答
how to convert micro structure image into binary and how to calculate fiber waviness angles
You can convert image into binary image using “im2bw”. For more information refer to the following link: https://www.mathwor...

5 years 前 | 0

已回答
How to program a slider tool to adjust image contrast?
You can edit slider_callback in order to adjust contrast of the image using slider value. get(hObject,'Value') command returns...

5 years 前 | 0

已回答
Restart a for loop with a different starting point in Matlab app designer
You can use flag variable to stop the execution of “BeginButtonPushed” function in your code after pressing ‘Restart from Last S...

5 years 前 | 1

| 已接受

已回答
How to find the local similarity between an original data and a reconstructed data set ?
You can use “corrcoef” function to find similarity between the two data. For more information refer to the following link: h...

5 years 前 | 0

| 已接受

已回答
Selecting nearest data for one time
There is a similar question which may be of relevance to you : https://www.mathworks.com/matlabcentral/answers/464446-distance-d...

5 years 前 | 0

已回答
Save training progress plots using OutputFcn
“savefig” accepts ‘.fig’ file extension only. It does not accepts other file extensions. For more information see the “input Arg...

5 years 前 | 0

已回答
How to import a plot from Matlab to Java ?
You can try using Java class(plotter) .You can refer to the documentation link for more information: https://www.mathworks.com/h...

5 years 前 | 0