Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 1

| accepted

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 1

Answered
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...

meer dan 4 jaar ago | 0

| accepted

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 1

| accepted

Answered
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...

meer dan 4 jaar ago | 0

| accepted

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 0

Answered
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...

meer dan 4 jaar ago | 0