已回答
Multiobjective optimisation with 2D (empirical) distributions - am I doing this right?
Hi, gamultiobj is used to show the tradeoff between objectives which depends on the same parameters. Specify ‘PlotFcn’ as ga...

5 years 前 | 0

已回答
Simulink MATLAB Function fully interpreted in MATLAB
Hi, Some functions are not supported in MATLAB function block. Instead you can use S function block in Simulink which can incor...

5 years 前 | 0

| 已接受

已回答
What to state on the left side using splitapply and polyfit?
Hi, The third argument to the polyfit function is order which should be a single variable and not an array. The arguments in ...

5 years 前 | 0

已回答
How can i use scatter plot in simulink?
Hi, The scatter function is not supported in simulink. If you want a scatter like plot you can change the settings in the sty...

5 years 前 | 0

已回答
KStest for unimodal and bimodal models
Hi, Kstest(x) returns a test decision for the null hypothesis that the data in vector x comes from a specified standard normal...

5 years 前 | 0

| 已接受

已回答
TCPIP connection timing out when streaming data from MTConnect
Hi, The below link provides all the possible causes of errors and ways to solve them https://www.mathworks.com/help/instrume...

5 years 前 | 0

已回答
I am using Matlab Guide and need advice on how to multiselect from a listbox populated with numeric data and save the selected items (>2) into an array.
Hi, First populate your list box with the azimuth data in the opening function function listmultbox_OpeningFcn(hObject, event...

5 years 前 | 0

已回答
How do I compute the volume under an sfit surface (fo=fit([x,y],z,'poly33') over the area of a polyshape (shape=polyshape(x,y))?
Hi, Volume under sfit surface can be calculated using triplequad function.It evaluates the triple integral of function over th...

5 years 前 | 0

已回答
Inverse differential kinematics equation X_dot = J*q_dot
Hi, If the matrix X is a function of t ,then X_dot = J*q_dot reduces to 7 equations with 5 unknowns (t,theta1 ,theta2,theta3 ,t...

5 years 前 | 0

| 已接受

已回答
Surface and Line interaction point
Hi, As you know coordinates of the surface ,first determine the normal vector to the surface From your code the coordinates...

5 years 前 | 0

| 已接受

已回答
Is there a way to find the starting position of a revolute joint in Simscape Multibody and use it as a variable to determine how much to rotate another frame?
Hi, As you specified we can get the start values from the variable viewer but cannot access the values from variable viewer dir...

5 years 前 | 0

已回答
Get the indices of surface triangle from a tetrahedral mesh.
Hi, Refer to the below link in file exchange https://www.mathworks.com/matlabcentral/fileexchange/10408-contours-for-triangula...

5 years 前 | 0

已回答
How to extract certain pixels from an image and reshape to plot?
Hi, You can directly crop the required part of the image by using the imcrop() function Specify the required size and the pos...

5 years 前 | 0

已回答
How fill color for base load, peak load, intermediate load?
Hi, The issue is that the base value of the first area is changing when the second area is displayed when using area() function...

5 years 前 | 0

| 已接受

已回答
How can I make a sigma sum graph?
Hi, As the integral and summation are two different functions,we can't get the exact same results with the both.As the lower li...

5 years 前 | 0

已回答
Plot hovering over curve to get values in an Array Plot (Simulink)
Hi, In order to get the values from the plot in simulink, enable the screen cursors in the cursor measurements settings of the ...

5 years 前 | 1

| 已接受

已回答
Resize Buttons during runtime - App Designer
Hi, You can set the AutoResizeChildren to ‘on’ in the property inspector of each component of your application, so that the com...

5 years 前 | 0

已回答
how to solve an equation with two unknowns
Hi, For solving the equation with 2 variables,you can use the solve() function syms n syms p p=solve(n*(1 - p)^(n - 1)-n*p*(...

5 years 前 | 0