답변 있음
FFT of coupled oscillator from time domain (picosecond) to frequency domain (wavenumber, cm-1)
HI Kunjanni, this occurs because the fft contains both positive and negative frequency (wavenumber) components. Zero frequency...

대략 5년 전 | 0

| 수락됨

답변 있음
Exponential function produces error with integrate command
Hi Ben for large x, exp(x) overflows to infinity before the exp(-(x.^2)/2) factor has a chance to bring in down. Try completin...

대략 5년 전 | 0

| 수락됨

답변 있음
Even distribution of coordinates subset
Hi Giovanni, here is one method, which assumes that B is supposed to span basically the entire domain of A. Suppose the set of...

대략 5년 전 | 0

| 수락됨

답변 있음
Why does pcolor require you to transpose the matrix when you give it x and y vectors?
Hi Darcy. pcolor works in the same fashion as meshgrid, and creates a grid with nx = length(x) columns and ny = length(y) rows....

대략 5년 전 | 0

답변 있음
Undefined function 'sinc' for input arguments of type 'double'.
Hi boutaina, Since it's easy in Matlab to make your own functions, you don't need toolboxes that are (probably not intentionall...

대략 5년 전 | 0

답변 있음
Choose Lyapunov function of a linear system
Hi Cristina, The first part of this is probably telling you what you already know, but denoting C = c*[1 -1 0; 0 1 -1; -1 0 1]...

대략 5년 전 | 0

답변 있음
orthagonal planes and normal vectors
Hi M, A plane satisfies the dot product equation equation r dot v = const where r is the position vector [x y z] and v = [vx ...

5년 초과 전 | 3

| 수락됨

답변 있음
How to generate a random complex unitary matrix whose columns each sum up to 1
MODIFIED to replace previous random function Hi Michael, here is one way. It's based on the idea that if the unitary matrix U...

5년 초과 전 | 1

| 수락됨

답변 있음
Solving a 3 degree of freedom mass spring damper model
Hi Z^2, Now that you have the K, C and M matrices, you can create a matrix equation to find the natural resonant frequencies. G...

5년 초과 전 | 0

답변 있음
Solve for the constants of a Quartic given the complex roots?
Hi Johnathan, r = [-5 -6 -9.6+25.7i -9.6-25.7i]; p = poly(r) r1 = roots(p) % check p = 1.0e+04 * 0.0001 0.0030 ...

5년 초과 전 | 0

| 수락됨

답변 있음
Coding a function for the Fourier Transform.
Hi Anthony, the only problem here is the normalization. For the inverse transform you are dividing by sqrt(N) every time, (N b...

5년 초과 전 | 0

| 수락됨

답변 있음
Ignoring NaNs for polyfit
Hello TimaMarie, yes, polyfit doesn't like NaNs. One way out is, just before doing polyfit, toss out the elements of both vari...

5년 초과 전 | 0

| 수락됨

답변 있음
Find first item with a certain condition and use it, instead of finding all items with that condition
Hi Thomas, [After reading comments from Bruno and Rik I realized I forgot to mention that in order to get your code to run I ch...

5년 초과 전 | 1

답변 있음
Fzero returning wrong root
Hello Emily If you insert this F_theta = double(F_theta); just after the calculation of F_theta, you will get the correct res...

5년 초과 전 | 2

| 수락됨

답변 있음
Solution of differential equations with an input derivative
Hi Pawel, you have e = -x(1) + 1; so de/dt = d/dt(-x(1) + 1) = -dx(1)/dt but dx(1)/dt = (x(2)-x(1))/T2 so you can replace...

5년 초과 전 | 1

| 수락됨

답변 있음
quat2angle different result
Hi Sven, it's pretty clear that both test and original have discontinuities because the function producing the angles, probably...

5년 초과 전 | 0

답변 있음
WHY ARE THE COLORS OF MY LEGEND ALL MESSED UP?
Hi OI, One reason that Sylvain posted his comment is that you do not provide working code. And of course your odds of getting ...

5년 초과 전 | 1

답변 있음
Why do I get too high dominant frequencies in FFT
Hi Timo, From your attached data I can see that it's 2 sec at 48 kHz as you said. In your frequency plot, the data seems to be...

5년 초과 전 | 0

답변 있음
fitting only continous line
Hi salman, I have been off taking a look at this problem. The method below uses the fact that what you call the discontinouus ...

5년 초과 전 | 0

| 수락됨

답변 있음
ilaplace returns unexpected answer
Hi Abdulla, You mention +- 3 as the coefficient, but are using +-6 in the actual example so I will stay with that. Looking at ...

5년 초과 전 | 0

| 수락됨

답변 있음
Changing the amplitude (y-axis) of an FFT back to units of force.
Hi Kev, The first thing is, the time and frequency arrays have to be correct. You are not actually using the 'time' variable b...

5년 초과 전 | 1

답변 있음
How to avoid an Infinite Loop?
Waseem, Nothing in the entire while loop alters either 'sizes' or 'sizesB'. So if sizes(1) ~= sizesB(1), that condition will ...

5년 초과 전 | 0

답변 있음
Calculation of antenna efficiency
Hi Shahar, The plot is of directivity, not gain (confusingly, directivity is sometimes called directive gain). Since directivi...

5년 초과 전 | 0

| 수락됨

답변 있음
How can I obtain the mean and standard deviation of a gaussian PDF
Hi Matthew, here is an example, where mu and sigma are calculated by numerical integration. Also shown are analytical results ...

5년 초과 전 | 1

| 수락됨

답변 있음
Why am I getting Complex number results?
Hello Ethan, The reason for this is that at step i = 14, the quantity on the third to last line, (1-(c*y(i)/T)) becomes negativ...

5년 초과 전 | 1

답변 있음
Poisson Boltzmann eq. with an infinite boundary condition
Hi Roi For convenience I will use u in place of psi. An exact solution is tanh(u/4) = A*exp(-x) where A = tanh(1/4) ...

5년 초과 전 | 1

답변 있음
Can I use the PDEPE solver to solve the following dimensionless Transient PFR PDE? If not, what method do you reconmend?
Hello Rogelio, For psi(t,eta) I assume that the boundary conditions are psi(0,eta) = 0 for all eta an...

5년 초과 전 | 0

답변 있음
double peaks in FFT matlab
Hello hamzah the fft is a complex function. Are you plotting only the real part? This problem is occurring because your delta...

5년 초과 전 | 0

답변 있음
How to plot wavelength and wavenumber FFT from intensity data
Hi Arwi, n = 3648, dpix = 8e-9; % 8nm seems small for a pixel width The x array has spacing delx = dpix and is x = delx*(0:...

5년 초과 전 | 0

답변 있음
Verifying the uncertainty principle with fft for Gaussian
Hello Ori, The problem stems from the following, where I am using t and f rather than x and k (see comment). For an fft, once ...

5년 초과 전 | 0

| 수락됨

더 보기