답변 있음
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))

9년 초과 전 | 0

답변 있음
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.

9년 초과 전 | 0

답변 있음
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 ...

9년 초과 전 | 2

답변 있음
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...

9년 초과 전 | 0

답변 있음
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 ...

9년 초과 전 | 0

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

9년 초과 전 | 0

| 수락됨

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

9년 초과 전 | 0

답변 있음
How to use xcorr function in matlab as autocorr
out = xcorr(x,x(25:end))

9년 초과 전 | 0

답변 있음
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 ...

9년 초과 전 | 0

답변 있음
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...

9년 초과 전 | 0

| 수락됨

답변 있음
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...

9년 초과 전 | 3

답변 있음
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>

9년 초과 전 | 0

답변 있음
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...

9년 초과 전 | 0

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

9년 초과 전 | 0

답변 있음
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...

9년 초과 전 | 1

| 수락됨

답변 있음
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...

9년 초과 전 | 0

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

9년 초과 전 | 1

답변 있음
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); ...

9년 초과 전 | 1

답변 있음
How to find a change of slope in signal
Try findchangepts. Look for 'linear'

9년 초과 전 | 0

답변 있음
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...

9년 초과 전 | 0

답변 있음
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.

9년 초과 전 | 0

답변 있음
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 ...

9년 초과 전 | 0

답변 있음
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...

거의 10년 전 | 0

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

거의 10년 전 | 0

답변 있음
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.

거의 10년 전 | 1

답변 있음
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...

거의 10년 전 | 0

답변 있음
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...

거의 10년 전 | 0

답변 있음
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: ...

거의 10년 전 | 0

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

거의 10년 전 | 1

답변 있음
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.

거의 10년 전 | 0

더 보기