photo

David Goodmanson


David Goodmanson

Last seen: Today Actif depuis 2012

Followers: 1   Following: 0

Message

Statistiques

All
  • 36 Month Streak
  • Thankful Level 2
  • Revival Level 3
  • Guiding Light
  • Knowledgeable Level 5
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Hi, I am applying findpeaks function to find the peaks of an oscilloscope signal but in the peak plot graph it is automatically changing the x-label with a large difference.
Hi Rikita, if you use findpeaks(y,x) where x is the x axis (linear or log scale) whose min and max match the oscilloscope trace ...

13 jours il y a | 0

Réponse apportée
Why such a fuss with ndgrid and meshgrid issues?
Hi Kristoffer, I totally agree that Mathworks should use nonsquare examples in the documentation for meshgrid, ndgrid, surf etc...

18 jours il y a | 1

Réponse apportée
How do I find the phase for a periodic cos wave using fft?
Hi Noam, here is a version using time and frequency in the usual manner. A couple of ponts here. If you construct a grid as y...

24 jours il y a | 0

| A accepté

Réponse apportée
how to write the right code to measure the elapsed time of this method d1 = diag(1./diag(A))
Hi Amna, A common way to do this is with tic and toc. So: a = rand(1e4,1e4); tic b = diag(1./diag(a)); toc Elapsed time...

29 jours il y a | 0

Réponse apportée
using polyval with one of the polynomials of a spline obtained with the unmkpp command, the results do not overlap! Why?
Hello TH,. spline polynomials are local to the secgment in question starting from x = 0, so if an interval is, for example 3 to...

environ un mois il y a | 1

| A accepté

Réponse apportée
Multiplication of submatrices of a matrix
Hi Laura, if I interpret this correctly, you have n rows (I'll use small letters mostly) of the form Anew = [c c*b1 c c*b2 ...

environ un mois il y a | 0

| A accepté

Réponse apportée
matrix inverse results different between r2023b and 2021b
Hi QL. you called both the inverse matrices '2021b' so I called the first one F and the second one S (and the orginal matrix is...

environ un mois il y a | 0

| A accepté

Réponse apportée
How do I get rid of these weird lines in the surf plot?
Hello Max, It appears that the GetRectGrid function creates points whose order is imcompatible with the reshape functions that ...

environ un mois il y a | 1

| A accepté

Réponse apportée
Error in ode45 solution
Hello PS, Assuming the following (before variables get changed around) tv_jk = tv_kj, for all j,k all real de...

environ 2 mois il y a | 0

Réponse apportée
reproduces the audio signal after sampling!!!
Hello Vu & Paul, < I took a brief look at the Vaidyanathan.paper and although the decimation process seems clear enough, the 'i...

environ 2 mois il y a | 1

Réponse apportée
Matlab got this wrong: Limit as n goes to infinity: (1+(i/n))^(n^2). Matlab says it's exp(2), which is wrong. Pls confirm.
Hi Moses, not every expression has a limit, or should. That's the case here, as anyone can check. For large n the function zi...

2 mois il y a | 1

Réponse apportée
Is there a way to create a lot of graphs for a 4D matrix without coding for a ton of individual graphs?
Hi Kitt, Here is one approach. In the example you are using imagsc plots instead of e.g. 1d plots of some state quantity vs. t...

3 mois il y a | 1

| A accepté

Réponse apportée
How can I calculate the integral of associate LegendreP(1,n,theta)*cos(theta)^2 ?
Hello Se, First of all I think you probably mean the integral of P(1,n,cos(theta))*cos(theta)^2 which is what makes sense whe...

3 mois il y a | 0

| A accepté

Réponse apportée
How to solve swallowtail integral
Hello YM, You won't be able to solve this as a closed form function of X,Y,Z but you can find the integral for given values of ...

3 mois il y a | 0

Réponse apportée
Trying to ubderstand the power distribution in fft plot
Hello Yogesh, The fact that all the abs(peaks)^2 add up to the expected total is just Parseval's theorem and has really nothing...

3 mois il y a | 1

Réponse apportée
How to interpret the amplitude of impulse() results
Hi HG, the large ampltude of the impulse response is correct. (has the original question been edited?) This has to be the cas...

3 mois il y a | 0

| A accepté

Réponse apportée
Find intersections of two sin wave function
Hello ZH The symbol f is a bit overused in your example, but if you have two functions g1 = A*sin(2*pi*f1*t +phi).^2 g2 = A*...

3 mois il y a | 0

Réponse apportée
Struggling to decide the sampling frequency for this fft plot
Hi Yogesh, If the time array has spacing delt (which you denote by dt) and the frequency array has spacing delf, then for an N-...

3 mois il y a | 0

| A accepté

Réponse apportée
Why is my 3D Projectile Trajectory not being calculated properly?
Hi Abeljohn, I think the only real issue here is trying to view the trajectory in plot3, If you let the ground be the xy plane...

3 mois il y a | 1

Réponse apportée
When this code is executed, 36 separate windows will open. I want the result to be displayed in a window.
Hi Babr, I think this is basically what is intended, taking the plot out of the for loop. close all; clear; clc N = 2048; ...

3 mois il y a | 0

| A accepté

Réponse apportée
Why do the limits of the following two equations have opposite signs? (MATLAB R2024a Update 1 _20240418)
Hello dq, I think the behaviour is reasonably clear. The first example is limit((1-(-1)^n)/n, n, 0) = -pi*i. If you look at ...

3 mois il y a | 0

| A accepté

Réponse apportée
Issue in getting correct probabilities for Landau Zener Problem
Hello Aryaman, I believe your step sizes are too large, but the first issue is, in the for loop you define a=v*t(i)/2; but then...

3 mois il y a | 0

| A accepté

Réponse apportée
periodic angular acceleration of mechabism
Hi Alberto, (modified once more) If you apply a constant torque tau and advance the angle of the crank by an angle u, then you...

4 mois il y a | 0

Réponse apportée
What does the period in line 20 ( after v)represent and why is it needed
Hi Bob, f is a vector with 1000 elements and consequently, so is the denominator. The dot allows matlab to divide each of the ...

4 mois il y a | 0

| A accepté

Réponse apportée
Fixed-step size: why doesn't the Nyquist-Shannon sampling theorem work?
Hello Zahara, The Nyquist theorem gives you the bare minimum number of points to describe the oscillation. More points are bet...

4 mois il y a | 0

| A accepté

Réponse apportée
caculate confidence interval from customized pdf
Hello SX, Ordinarily to find the cdfs you would have to use numerical integration. In this case for the normal distributions, ...

4 mois il y a | 1

| A accepté

Réponse apportée
Helmholtz problem in circular disk
Hi Athanasios, the problem is with the table of zeros of the bessel functions. Counting starts with the first nonzero value, s...

4 mois il y a | 1

| A accepté

Réponse apportée
How can it be that my continuous relative phase exceeds 360 degrees?
Hello Suuz, There is nothing inherently wrong with a phase angle of more than 360 degrees. In fact such a phase can be valuabl...

4 mois il y a | 0

Réponse apportée
Symbolic derivative in a sum
Hello OG, If you know d/dp G for the elements of G, you can use d/dp G^-1 = -G^-1 (d/dp G) G^-1 which is all right numericall...

4 mois il y a | 0

Réponse apportée
Solving complex linear equations with conjugate operations
Hello SB, Any way you look at it you have four independent unknown quantities, but there is some choice of their form. For the...

4 mois il y a | 0

| A accepté

Charger plus