已回答
Random numbers generation problem
Hi Daniel, here is one way, basically the sieve of Eratosthenes. nmax = 1000; a = randi(nmax,1,1e6); a(rem(a,2)== 0) = []; ...

3 years 前 | 0

已回答
different result of PCA function and my PCA
Hi Farshad, Each column vector in the cof matrix is arbitrary up to an overall constant of absolute value 1, which for the case...

3 years 前 | 0

已回答
My code is outputting very illogical answers for the second block (my second vector loop equation).
Hi Emily, No one seems to have mentioned that there are two independent solutions for the angle pair angle3 and angle4, since i...

3 years 前 | 0

| 已接受

已回答
My code is outputting very illogical answers for the second block (my second vector loop equation).
Hi Emily, If VLE1 and VLE2 are lined up typographically, you have VLE1 = @(x0) [(R2.*cos(theta2_all(i)) + R3.*cos(x0(1)) -...

3 years 前 | 0

已回答
xcorr and finddelay giving erroneous results for offset sine waves
Hi James, This effect is due to a peculiarity in finding delays when your sample is cut off sharply at each end. The following...

3 years 前 | 1

| 已接受

已回答
Would you tell me the code for Fisher Pearson skewness?
Hi Chris, y = rand(1,100); % some data m = mean(y); n = numel(y); scalc = (sum((y-m).^3)/n)/var(y,1)^(3/2) s = skewness...

3 years 前 | 1

| 已接受

已回答
Why doesn't the kurtosis function work properly for complex numbers?
Hi Guillem, Both the standard deviation and the variance (std and var) work correctly for complex argument, so kurtosis appears...

3 years 前 | 1

| 已接受

已回答
SIR model with recovered individuals may lose their immunity and become reinfected with the disease. But came with a failure about integration tolerances
Hi Julian, I have doubts about the equations, because with dq(1) = -S as you have, the equations are equivalent to S = -beta*S...

3 years 前 | 0

已回答
what does the positive and negative values concave mean?.
Hello Aisha, You are looking at a polynomial function of z, with two roots as you stated. To see what is going on, it helps to...

3 years 前 | 0

| 已接受

已回答
Differentiate with Respect to Derivative
Hello Mitra, what version of Matlab are you running? Running your code in 2021b gives D1 = m*diff(x(t), t) as desir...

3 years 前 | 1

已回答
Huge difference between the result of fft function Matlab and analytical Fourier transform of the same function
Hi ST, Your frequency grid runs from -5 to 5, which for an fft is -fs/2 to fs/2 (fs being the sampling frequency), so fs = ...

3 years 前 | 0

已回答
Plotting the theoretical maximum possible efficiency of a heat engine
Hi Aidan, It's possible to fix up the for loop, but easier and much more in the spirit of Matlab to do this with vectors. Tl1=...

3 years 前 | 0

已回答
Compute wave energy converter power output using power matrix
Hi Ross, For the matrices SWH and T02, which I will call S and T, do they already meet the condition S contains integers from ...

3 years 前 | 0

已回答
Finding PSD from Autocorrelation, FFT, Periodogram and Pwelch
Hello YK, Since you are using ffts, the appropriate correlation is going to be circular correlation. This can be done by using...

3 years 前 | 1

| 已接受

已回答
is there any method to apply the for loop in this, I caN't see any pattern please help in this
Hi Sahil, This can be done by for loop but it is maybe better to do the whole thing with index manipulation. In the written-ou...

3 years 前 | 0

| 已接受

已回答
How can I show Electric Potential due to a Dipole as a 3D surface?
Hi Luca, Since you can't show the values of the potential at every point in the 3d space, this is most commonly done by showing...

3 years 前 | 0

已回答
What is the equation used for taylor window function 'taylorwin'
Hi Palguna, The equations are in the attachment. rect(t) is a rectagle function, = 1 for -1/2<= t <= 1/2, 0 otherwise. That's...

3 years 前 | 2

| 已接受

已回答
Explanation for a function within xcorr
Hi big, rather than puzzle this out in place, it seemed easier to look at the output of the function for the first hundred valu...

3 years 前 | 0

| 已接受

已回答
Got wrong normal vector
Hi AC, You were quite right in your suspicions of the 3d plot, which looks fishy. You might call this a configuration control ...

3 years 前 | 0

| 已接受

已回答
fft vs nufft- scaling
Hi Nathan, In the fft case you are dividing by N = 1500 and multiplying by 2. For nufft you aren't doing that. Hence the fact...

3 years 前 | 0

| 已接受

已回答
Why I got the dominant frequency as 1/time when I running fft?
Hi CS, here is an example, first with 800 points, then 400 points. The frequency scale is constructed differently in each one ...

3 years 前 | 0

已回答
finding the orthogonal vectors for a series of vectors
Hi Pouya, Here is another method, somewhat related to Bruno's a = 2*rand(1000,3)-1; m1 = tril(ones(3,3)) -triu(ones(3,3)) ...

3 years 前 | 1

已回答
spline for corner object
HI Mehri, try sorting by angle around a point in the center: x0 = 350; y0 = 325; theta = atan2(y-y0,x-x0); [~,ind] = sort(t...

3 years 前 | 1

已回答
I want to solve this couple differential where the dot represent the derivative with respect to t/tp, where tp = 30E-9, is my code for solving this is correct? ?
Hi Sahil, Since the constants are all of order 10^-3 to 10^3 or so, it's evident that normalized units are in play. So you hav...

3 years 前 | 0

已回答
Write a vectorial function from a scalar function
Hi Giuseppi, it looks like you intend, in this case, f = @(z,y) z.^2 + y^2 Here .^ gives the element-by-element square of z, ...

3 years 前 | 0

已回答
What is the use case for ifft's trailing zero padding? Why is that the default?
Hi Kevin. Zeropaddinig has consequences. It also has its uses, but sometimes the results are unexpected. First of all, whatev...

3 years 前 | 1

已回答
Why is it giving me undefined function for the slope field?
Hello Brenda, As an alternative to figuring out how to get that code up and running, or as a comparison, you can run your own c...

3 years 前 | 0

已回答
How to code this quadratic minimization problem subject to a linear constraint?
Hi Armando/Bianca Suppose lambda is a 1x3 row vector. The code below is based on the fact that the solution abc (which is the ...

4 years 前 | 0

已回答
Interpolation of the values of points on the surface created by convex hull
Hi Jose/Nima, Suppose you have a triangle with vertex points p1, p2, p3, each of those defined by a column vector of their x,y,...

4 years 前 | 0

已回答
generate white gaussian noise
Hi HL, Since white gaussian noise is just random draws from a normal distribution, you don't really need some toolbox or other,...

4 years 前 | 0

| 已接受

加载更多