photo

David Goodmanson


Attivo dal 2012

Followers: 1   Following: 0

Statistica

All
MATLAB Answers

1 Domanda
1.225 Risposte

Cody

0 Problemi
26 Soluzioni

RANK
52
of 301.598

REPUTAZIONE
3.754

CONTRIBUTI
1 Domanda
1.225 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.0%

VOTI RICEVUTI
535

RANK
 of 21.346

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
20.877
of 175.689

CONTRIBUTI
0 Problemi
26 Soluzioni

PUNTEGGIO
270

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

Risposto
Can you get matlab to add a really small number to a big number and retain precision
HI Stephen, It's certainly doable, but rather than have the software crank away at a precise enough calculation, in this case I...

19 giorni fa | 3

Risposto
How to resample time vector to regular sampling rate maintaining original values
Hi Martina, As I understand it there is a fairly constant clock rate with some values dropped (as opposed to a gap, of say, 2.5...

2 mesi fa | 0

Risposto
The fourier series coefficient phase
Hi Zeyuan >> [ak_shifted; angle(ak_shifted)] 0.0000 -0.0000 8.0000 8.0000 8.0000 8.0000 8.0000 -0.0000 % ...

2 mesi fa | 0

Risposto
How to check the following inequality for any complex analytic function ?
Hi simran I'm not sure if you are bringing up f(z) = 0 & f'(z) = 1 as a necessity or as just a special case but I'll assume nec...

3 mesi fa | 0

| accettato

Risposto
Jacobi iterative method in matlab
the expression x_new = (b - A*x + diag(A).*x)./diag(A) works. I don't know if it might run into numerical accuracy issues due...

5 mesi fa | 0

Risposto
convolution integral with ode45
This is a very interesting problem! Convolution of the loss term for the harmonic oscillator. I had been working on some exten...

5 mesi fa | 0

Risposto
convolution integral with ode45
******************** MODIFIED ******(************** because the method suggested here does not work. I took out some us...

5 mesi fa | 1

Risposto
Understanding recursion for decimal to binary conversion
Hi Kyle, here is an attempt, hope it helps. As Walter has noted, this is not a recursion since the function does not call a pre...

5 mesi fa | 1

Risposto
Imaginary output from arccosine function when the input is close to -1
Hi Ali, The acos and (m dot n) approach is not a good way to go about this at all. It's inaccurate when n is almost equal to -m...

6 mesi fa | 1

Risposto
Sign of lambda.eqlin
Hi Aiden, William's example is f(x) = x^2+y^2 Aeq=[1,1] beq = 1 L(x,lambda) = f(x) + lambda*(Aeq*x'-beq) % conve...

6 mesi fa | 1

Risposto
ilaplace doesn't handle tanh()
Hi marcel, There seems to be some uncertainty about the question, but this answer is for the voltage across the resistor, for a...

6 mesi fa | 0

Domanda


Iterating the eigenvalue function (eig) produces patterns --- is this a well known result?
Suppose M is a square matrix and [N lambda] = eig(M), so that the columns of N contain the eigenvectors of M and the diagonal ...

7 mesi fa | 2 risposte | 0

2

risposte

Risposto
Transpose matrix and your transposition
HI Airto, Rather than actually transpose it with the ' (apostrophe) command, you can use zeros(3,3500000); The transpose a...

8 mesi fa | 1

| accettato

Risposto
How to model a cable passing through a hole in 3D in Simscape?
Hi Soumya, (hypothetical answer since I don't know how details work in Simscape). In your diagram if it's known that the exit ...

8 mesi fa | 0

Risposto
How to correctly find the solution of a system of equations containing trigonometric functions
Hello yan, This is one of those situations where a multivariable solver is best avoided if possible. With enough variable subs...

8 mesi fa | 0

Risposto
can anyone suggest me how to convert binary value to gray code value??
Here I used 'grey' instead of gray since Matlab has a function called gray. n = 4 G = grey(n); IG = igrey(n); nbin = dec2bin...

8 mesi fa | 0

Risposto
How to further utilize the "simplify" function for simplification?
How did an overall factor of theta_dot5 in the question later become sin(theta_5) in the comments ?!? Taking the original posti...

8 mesi fa | 0

| accettato

Risposto
How can I get the correct answer for int(1/x) with symbolic integration?
Hello Georg, I agree that log(|x|) is the correct way to do this, consistent with what tables of integrals have to say. (With ...

9 mesi fa | 0

| accettato

Risposto
How does sub2ind work with non-integer values?
Hi Saygin, Interesting behavior. The help for sub2ind says it 'returns the linear index equivalent' and I guess they really me...

10 mesi fa | 3

Risposto
Spectrum block shows incorrect dbm value
Hi Sergei, The plot shows peaks at both positive and negative frequencies. Each of those equal size peaks contains half of the...

10 mesi fa | 1

| accettato

Risposto
Positive Roots of bessel functions.
Hi Javeria, here is a function besse0j to calculate the roots of J and J'. (at the origin, Jn(0) = 0 for n>0 but these zeros ar...

10 mesi fa | 0

Risposto
Can we find derivative of bessel functions in matlab directly?
Hi Javeria, Here is a function that produces J'm(x) for integer m. function y = besseljd(n,x,opt) % derivative of bessel fu...

10 mesi fa | 0

Risposto
solving system of equations
Hi Javeria, If it's not required to solve this in the way you mention, there is a better way. Assume that x2 is positive or ze...

11 mesi fa | 0

Risposto
Why am I only getting the upper sideband when multiplying complex signals?
Hi Jared, You probably can't reproduce the result with a single operation. When you use the 'complex' option, the resulting wa...

11 mesi fa | 0

Risposto
The coefficients of a Hermite polynomial
Hi Magdy, For a change of pace, here is a function that calculates the coefficents of Hn by recursion. I didn't want to get in...

11 mesi fa | 0

Risposto
why mod(rref(A), 2) does not give the correct result?
Hi Lily, Although c is a linear combination of a and b mod 2, rref does not know anything about mod 2. rank([a b c]) ans = ...

11 mesi fa | 0

| accettato

Risposto
how to determine the wavelengths of an fft of a non-dimensional sequence
Hi Andreas, For a fourier transform, time and frequency, or length and wave number, or [before-fourier-transform] independent v...

12 mesi fa | 1

Risposto
Can I get the integral formula using Matlab?
Hello Haya, The integral is very much defined for m=n. In that case you are integrating the function sin(n*x/2)^2*(x-pi)^2 w...

circa un anno fa | 0

Risposto
Is there any expert who knows how the SNR result in the RF Budget Analyzer is calculated? Why is it inconsistent with the value I calculated?
Hi ZW, It's good to work out things independently as you are doing. The available power is 0 dBm, i.e. 1 milliwatt = -30 dB wa...

circa un anno fa | 1

| accettato

Risposto
Peak in probability distribution moves in normpdf when changing lower bound for input vector
Hi Chris, try x = 10e3:70e3; plot(x,normpdf(x,40e3,6e3)) The problem occurs because if you create y = f(x) and use plot(y), t...

circa un anno fa | 2

| accettato

Carica altro