回答済み 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...
7年弱 前 | 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...
回答済み 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...
回答済み 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...
回答済み 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...
7年弱 前 | 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*(...