답변 있음
Solving 2d heat problem using meshgrid
@Ali, [edit: fix spelling erors] A 10x10 mesh for this problem is so few points that it makes it hard to set up the problem an...

대략 2개월 전 | 0

| 수락됨

답변 있음
How to reduce \t commands
@TheSaint, Hard to say, since we don't know what F and SC and E are. You use the word table. Have you used Matlab's T=table...

대략 2개월 전 | 0

답변 있음
Advice on formulating a minimization function
@Collin Pecora, If you want to use multiple sources of data, with different levels of measurement error, to estimate parameters...

대략 2개월 전 | 0

| 수락됨

답변 있음
looped 3D FFT of 4D data
@sbr, P2 is 64x64x64. P1 is 1x33. Your plot shows that one column along one corner-edge of the cube P2 is zero. But P2 is not...

대략 2개월 전 | 0

답변 있음
Plot a Probability Density Function in 3D
@Victor Carneiro da Cunha Martorelli, For a one-dimensional random variable, you could do the Kolmogorov-Smirnov test, or the A...

대략 2개월 전 | 0

답변 있음
Detect boundaries seperating data blocks in a time series signal
@Ashley, I am actually very impressed that findchangepts() did so well. I recommend adjusting the optional arguments of findch...

대략 2개월 전 | 0

답변 있음
How to get the value of X-axis at the -3dB
@Chris, There is no guarantee that H(f) will = -3 dB at one of the frequencies at which you evaluate H(f). Therefore, since it ...

대략 2개월 전 | 1

| 수락됨

답변 있음
Special case of spectrogram not match FFT
@John, There are many ways to normalize a spectrum. Mathematicians like to have a factor 1/sqrt(n) in the forward and reverse ...

대략 2개월 전 | 0

답변 있음
Fourier transform spatial domain-DSP
@Nimasha Pilippange, Matlab's fft() will work fine on spatial data. The only difference is in the interpretation of the transf...

대략 2개월 전 | 0

| 수락됨

답변 있음
two signal one is original signal i.e. pulses and other is receiving signal with a noise. finding the delay in signal by using the cross correlation.
@Mahesh, The error above occurs if you pass a non-integer scalar value for receiver_signal, because a scalar is interpreted as...

2개월 전 | 0

답변 있음
How to find fitting optimized parameters to fit a system of non-linear ODEs to experiment.
@Buhari Ibrahim Matlab has excellent tools for this. https://www.mathworks.com/help/optim/ug/optimizing-a-simulation-or-ordina...

2개월 전 | 2

답변 있음
How to delete or exclude an entire matrix if it contains all zeros
@Caitlin, you'll have to be more specific about how you are reading in the data in order to get a useful answer. X=zeros(10,10)...

2개월 전 | 0

| 수락됨

답변 있음
Huge inaccuracies in plotting diode IV characteristic in Matlab
@Nicholas, It is clear that your model does not fit your data. So there has been an error in the data collection, or the mdoe...

2개월 전 | 1

| 수락됨

답변 있음
Adjusting Parameters in Transcranial Doppler Audio Processing: Seeking Guidance on Gain, SWEEP, and Audio Playback
@Patrícia, For colors, you can specify a colormap that gives colors more like what you want. See here, and scroll down to see ...

2개월 전 | 0

| 수락됨

답변 있음
Inconsistency between Matlab eig() function and Matlab generated C code eig() function
@Hugoz, I am not sure how you generated the C code, but I suspect the C code is wrong. Matlab's eig() is extremely well tested...

2개월 전 | 0

답변 있음
Fitting an ellipse based 3D PointCloud on 3D space
@Tingting, The data file you provided is a triangulation object. To fit an ellipse to the data, extract the vertices. load('3...

2개월 전 | 0

답변 있음
Inconsistent solutions for numerical integration of non-linear differential equations?
@Marco, [Edit: Change "higher level solvers are able to achieve..." to "higher order solvers may achieve...", because the highe...

2개월 전 | 0

답변 있음
How to use MATLAB to simulate and obtain farmland plots?
@marvellous, Yes you can. You'll need to specify something about the shape, for example, the number of vertices. I'm sure ...

2개월 전 | 1

| 수락됨

답변 있음
Amplitude decrease after FIRRateConverter
@Yuhan Chiang, [edit: fix spelling errors] Please post the data file and code you used to make the initial figure. You said y...

2개월 전 | 0

답변 있음
Creating cartesian volumetric dataset from polar coordinates
@Eun, This is quite do-able. I know there are people on this site who are very much able to assist you. I have experience usi...

3개월 전 | 0

답변 있음
Solve a system of coupled differential equations with ODE23s
@Thomas Stone-Wigg, Does your code run? Do you want help making it run at all, or help making it run better? If better, bette...

3개월 전 | 0

| 수락됨

답변 있음
How to locate the bifurcation point of the flow
@Charles Taylor Taylor, You provided a quiver plot. Since you have a quiover plot, you obviously have the arrays X,Y,U,V. You...

3개월 전 | 0

답변 있음
heatmap help - how to display grouped data across 3 levels (LO, MED, HI) ?
@Douglas Leaffer, Make a single variable Vstat with three categories: LOW, MED, HIGH, rather than three separate variables. ...

3개월 전 | 0

답변 있음
Difference between theoretical power spectral density and pwelch/periodogram ARMA models
@Simona Turco, When estimating the transfer function with pwelch(), remember to compute the denominator. Estimate the PSD of...

3개월 전 | 1

| 수락됨

답변 있음
autocorrelation of a signal after transforming the x-axis
@Sayanta Goswami, There is not an option with xcorr() to apply a different time scale. The discrete cross- and auto-correlatio...

3개월 전 | 0

답변 있음
data fitting with multiple independent variables
@Daniele Sonaglioni, [edit: correct spelling error] Your model includes two global parameters (p1, p2) and three parameters th...

3개월 전 | 0

답변 있음
getting a clear signal with eog
@Ali Eren Çinar, That is a really nice answer and follow-up from @Star Strider. For example, the lines hor = sum([-(EOGf{:,1}...

3개월 전 | 0

답변 있음
Lognormal Fitting with the Pore Size and its Probabilities
@Alex Lee, Take the logarithm of the pore sizes, then compute mu and sigma using the log(pore size) vector. The mu, sigma comp...

3개월 전 | 1

| 수락됨

답변 있음
How to modify the 2nd code like the 1st one?
@Sadiq Akbar, [edit: I submitted the answer prematurely.] Code 2 runs without error. Why do you think code 2 needs fixing? %...

3개월 전 | 0

답변 있음
How can I combine two transfer function?
@Raveesha Bandara, The diagram indicates that the upper loop (or loops*) affects the lower loop, but the opposite is not true....

3개월 전 | 2

| 수락됨

더 보기