Answered
i have this problem in the picture below ...can u help me about the problem??
sin(x) and cos(x) require parentheses about their arguments. So you need to say sin(u(3)) and cos(u(3))

7 years ago | 0

Answered
Clipping an audio signal
You're clobbering the values in your for-loop. Try defining maxX = max(X) and minX = min(X) before modifying X.

7 years ago | 0

Answered
Disadvantages of using large NFFT value in pwelch/spectrogram
You can mean one of two things by frequency resolution: # The frequency spacing between computed estimates (sometimes called ...

7 years ago | 2

Answered
additional findchangepts function output
I don't think I have a good answer to this. The 'mean' option works by performing a sum residual square error, introducing a co...

7 years ago | 0

Answered
additional findchangepts function output
#2 You can get close to this by running FINDCHANGEPTS once with a given threshold, finding all segments that are too long, and ...

7 years ago | 0

Answered
additional findchangepts function output
#1 Maybe something like: function y = fitchangepts(x, icp, statistic) y = nan(size(x)); K = length(icp); ...

7 years ago | 0

| accepted

Answered
what is mean Nfft, Nwind, Window and Overlap?
https://www.mathworks.com/help/signal/ref/pwelch.html

7 years ago | 0

Answered
How to use xcorr function in matlab as autocorr
out = xcorr(x,x(25:end))

7 years ago | 0

Answered
Eucliedan Distances In two Arrays
You can also use <https://www.mathworks.com/help/signal/ref/findsignal.html findsignal> if you have a recent copy of the Signal ...

7 years ago | 0

Answered
Trying to make a sudoku puzzle generator
I like your randperm() idea. You can use it to do the scrambling without any for-loops at all. You may safely transform a va...

7 years ago | 0

| accepted

Answered
Why can't I plot a spectrogram in my GUI?!?
Looks like you're trying to redirect the auto-generated debug plot of the spectrogram to a dedicated figure, and it's failing be...

7 years ago | 3

Answered
Given the coordinates of a centroid, find the nearby pixels with the same color.
Have a look: <https://www.mathworks.com/help/images/ref/edge.html#examples>

7 years ago | 0

Answered
lpc function for smaller intervals
In my version, line 64 generates an error when your input signal is empty (i.e. has no data). Set a trap on it and then cli...

7 years ago | 0

Answered
mean fundamental frequency
If you have a recent copy of the Signal Processing Toolbox, you can search for "meanfreq"

7 years ago | 0

Answered
How can you get the x and y values from plotted points on a quiver plot?
You'll want to get the line handle. Something like: >> hq = quiver([1 2 3],[3 1 2],[4 1 5],[2 1 2]) hq = Qu...

7 years ago | 1

| accepted

Answered
Why is spectrum.periodogram not recommended, and how to substitute pwelch in it's place?
If you have R2015a or later, try <https://www.mathworks.com/help/signal/ref/medfreq.html medfreq>. The spectrum package is no...

7 years ago | 0

Answered
Median Frequency(Fmed)
Try: <https://www.mathworks.com/help/signal/ref/medfreq.html medfreq> Introduced in R2015a.

7 years ago | 1

Answered
How can I find and plot the change in frequency of a signal?
Assuming you have the Signal Processing Toolbox and your data x is uniformly sampled with sample rate Fs: z = hilbert(x); ...

7 years ago | 1

Answered
How to find a change of slope in signal
Try findchangepts. Look for 'linear'

7 years ago | 0

Answered
comparing two sentences of strings
Search the internet for "edit distance". MATLAB has a variant that works on real signals, called EDR. It does insertion/deleti...

7 years ago | 0

Answered
How does DTW penalize stretching ?
Have you tried EDR? It penalizes stretching. It might be helpful to post the data you are trying to compare.

7 years ago | 0

Answered
How to optimize the parameters in fillgaps function?
I find the default values work for me; but sometimes if I have a big signal with lots of missing values, limiting the length of ...

7 years ago | 0

Answered
Finding the better function to calculate the Dynamic time warping distance (DTW)
If you have the R2016a Signal Processing Toolbox, have a look at: http://www.mathworks.com/help/signal/ref/dtw.html You'll...

7 years ago | 0

Answered
medfilt1omitnan error
You might have an older copy of the Signal Processing Toolbox. NaN behavior was added in R2015b.

7 years ago | 0

Answered
How to use medfilt1 on different computers
If you have an R2016a install but without the Signal Processing Toolbox, you can try looking for MOVMEDIAN.

7 years ago | 1

Answered
How to fill timeseries data using interpolated data then have a nice contour plot
If you have a copy of the R2016a Signal Processing Toolbox, try fillgaps. Seems to work okay on your density grid (I've lim...

7 years ago | 0

Answered
Bandpower function produces same results for different bands
You might not be giving it enough data to resolve the lower frequencies. You generally will have a resolution on the order of f...

8 years ago | 0

Answered
Plotting a peak envelope
If you have HILBERT then you have access to the Signal Processing Toolbox. If you have R2015b or later, try using ENVELOPE: ...

8 years ago | 0

Answered
How can I perform a piecewise linear fit to data?
If you have the R2016a Signal Processing Toolbox, you can try FINDCHANGEPTS.

8 years ago | 1

Answered
How to get an "optimal" piecewise linear spline for any functions?
If you have R2016a Signal Processing Toolbox, you can try FINDCHANGEPTS with 'linear' to find the locations.

8 years ago | 0

Load more