Beantwortet
sum of a sum of a sum of a sum
Hi Marta, The code below does not address the algebra in the paper, but I am posting this because it is another way of doing th...

etwa 4 Jahre vor | 1

| akzeptiert

Beantwortet
How can I define proper frequency domain of FFT function in Matlab
Probably a bit late in the game, but the followiing code shows the peak at 300Thz. A couple of issues here: first to (a) get a...

etwa 4 Jahre vor | 0

Beantwortet
Best way to get rid of/ prevent function from creating complex numbers?
Hello Jeffrey, Deleting unsatisfactory results is of course not a good way to deal with this. I ran case {15} from your matfil...

etwa 4 Jahre vor | 1

Beantwortet
Can I input data with multiple column lengths into one matrix?
Hi Brice, If you preallocate as you mentioned then you can insert each column with t = zeros(300,numslugs); x = zeros(300,num...

etwa 4 Jahre vor | 0

Beantwortet
Trying to plot a frequency response (magnitude and angle) using the equation of a forced vibration
Hi Bryanna, The problem statement asks for delta_t of .01, but you have .1 instead. Changing to .01 makes things clearer. The...

etwa 4 Jahre vor | 1

Beantwortet
How do I get rid of certain values with the same X-axis value in a certain range?
Hi Michael, here is one way, assuming that x (many values of which are repeated) and y are two columns. tol = 10; a = polyfit...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
MATLAB and LAPACK implementation of the SVD algorithm - not the same output?
Hi Danijel, actually it's the columns that have different signs. That's for the following reason: Suppose the svd of the matr...

etwa 4 Jahre vor | 0

Beantwortet
I need help with a Triple Integral
Hi Francisco. this is really just a 1d integral. Since nothing depends on theta, the theta integration instantly gives an over...

etwa 4 Jahre vor | 0

Beantwortet
convolution product calculater impulse response
Hi amjad, You have to keep the indices within the bounds set by dx and dh. For the j loop, you can use the line for j=max(1,i...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
Why is the magnitude spectrum spreaded over certain frequency range instead of line spectrum in FFT?
Hi lekhani, The spread is happening because you don't have a pure, CW, constant-amplitude cosine wave in the time domain. That...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to determine the lag angle between two snine wave
Hi Hassan Consider the complex wave exp(i*(w*t+theta)) = cos(w*t+theta) + i*sin(w*t+theta) While it's true that the cos a...

mehr als 4 Jahre vor | 0

Beantwortet
Yellow Colormap on contour lines
Hello Juan using: doc colormap will bring up all of the preconstructed choices. In this case it looks like 'hot' was used. 'a...

mehr als 4 Jahre vor | 0

Beantwortet
I am trying to find values of four constants from four equations. Yet the code is unable to give out values
Hi Sahir, you have to load this beam in some manner in order to get nonzero deflection. If all the boundary conditions are set...

mehr als 4 Jahre vor | 0

Beantwortet
What is this fft code doing?
Hi kcee, The code (I'll refer to it by line below) is not doing what it is doing very well. Let's start with the good part, th...

mehr als 4 Jahre vor | 0

Beantwortet
How to approximate a triple integral over a rotated grid?
Hi Oscar, Before the cyinder is tilted, you are describing the volume with cylindrical coordinates and finding the moment of in...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot the subplots but with less lines of code?
HI muhammed all you need to do is put the subplots into a for loop and change the things that vary with subplot. That is the d...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
I have code which calculates the electric potential due a single charge. The results are concentric circles (Correct results) but don't match the theoretical data
Hi Matthew, probably a bit late to be answering this now, but thanks to some editing done by John Kelly at Mathworks it provide...

mehr als 4 Jahre vor | 0

Beantwortet
Huffman Dictionary, error with index exceed when i give specific probabilities.
Hi Rafael, sum(probabilities) ans = 1.0003 SInce the probabilities don't add up to 1, the code is going to have problems. ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
roots of 3*3 matrix determinant
Hi Cern, I assume you mean the three values of w that give a 0 determinant. Eig works for this. K = rand(3,3) c = diag([12 2...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
LDL does not support complex symmetric matrices
Hi Nathan, the LDL decomposition works for hermitian matrices. In LDL the D matrix is hermitian, so if A = L*D*L', then A' ...

mehr als 4 Jahre vor | 1

Beantwortet
fft showing frequency components at double rates
Hi Sina, Here is an observation and a possible answer. If you expand out plot(t,y) (I used xlim([4 4.1]*1e-12) ) there ar...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Solving set of coupled non-linear ode using ode45
Hi Ajai, The angles appear to be measured from the horizontal, not the vertical. That's because the terms involving g use cos(...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Energy eigenvalues plot of a Hamiltonian(Weyl)
Hi Vira, The plot has no room for px so I assumed it was zero. px=0 corresponds to E(17,:,:,:). Then everything seems to come...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
when I am subtracting two same values found out from different equations not giving 0, it is giving imaginary value
Hi Bikram, this is all because of precision issues when dealing with floating point numbers. After running your code, tminusx...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Is there a way I can convert image (pixel) values ​​to Raman shift using MATLAB?
Now that the peaks in both pixels and cm^(-1) are provided, you can do a linear fit, which is very close. p = [155.56834, 396.5...

mehr als 4 Jahre vor | 0

Beantwortet
Why does a sine bandwidth decrease with 1/dur, dur beeing the signal duration
Hi Jonas, I believe what you are seeing is just the natural reciprocal relation between width in the time domain and width in t...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
PCA output gives NaN after normalizing input matrix
Hi Christopher, I am not making any comment on the svd procedure, but f = find(all(obs==0)) f = 79 80 81 82 83 ...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
How to sort a vector based on the absolute difference of the sorted vector
Hi Awais, a= [2,3,6,12,7,18,25,0,28,5] b = sort(a)' % column vector c = [b(1:end-1) b(2:end)]; d = [diff(c,[],2) ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
solve equation in Matlab and for loop
Hi Myrto you have a sixth degree polynomial to solve and find the roots. However, there are no algebraic solutions for the roo...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Hankel function, mathematical definition
Hi Kevin, The hankel functions h that you cited are spherical hankel functions, which have half-integer order and are related t...

mehr als 4 Jahre vor | 1

| akzeptiert

Mehr laden