Réponse apportée
Low pass fir filter code
Do you have the Signal Processing Toolbox? Then designing an FIR filter will be easy, but you need to have more detailed specifi...

environ 13 ans il y a | 0

Réponse apportée
How to calculate the FFT on 320e3 points?
I do not find that to be the case, have you tested that? N = 320e3; x = randn(N,1); y = zeros(100,1); for nn = 1:100...

environ 13 ans il y a | 1

| A accepté

Réponse apportée
i found out the peaks of a signal as well as its locations but i have not been able to plot the peaks in the signal can anyone please help
Have you looked at the findpeaks reference page in the documentation, which has an example doing exactly that? x = linspace...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How to decompose following gps time series ?? Please help me
Hi Chris, you can certainly fit the trend here by just using a simple linear model. I'll use the variable gps_data to represe...

environ 13 ans il y a | 0

Réponse apportée
How to calculate the FFT on 320e3 points?
x = randn(320e3,1); xdft = fft(x); Why do you think that MATLAB does not calculate the DFT on the length of the input vect...

environ 13 ans il y a | 0

Réponse apportée
ber plot using semilogy
You are plotting? semilogy([0.5031,0.5022,0.5005,0.4769,0.3466,0.1949,0.161]) The values are not 10^(-3) and 10^(-7), th...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Creating a normal distribution and chi^2 test
Why do you think you cannot perform any statistical test that will benefit you when you have 369 measurements? In many contex...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
how do i do temporal correlation between grayscale images
Have you looked at the examples here: <https://www.mathworks.com/help/signal/ref/xcorr2.html>

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Hi.....I am pursuing M.tech....I need sample codes on DTCWT....anyone plzzzz help me.....
If by your acronym you mean the dual-tree (complex) discrete wavelet transform, then see Professor Selesnick's website: <http...

environ 13 ans il y a | 0

Réponse apportée
Matlab error: ??? Error using ==> interp1 at 259 The values of X should be distinct.
The problem is your last X value is -1.0012, which is repeated from the 3rd to the last X(end-2:end) So note that zi...

environ 13 ans il y a | 0

Réponse apportée
What is the comments given in this IWT code?
Have you read the help for dwt2? You need to specify a wavelet name (or the filters) to use. It's better to use wavedec2 beca...

environ 13 ans il y a | 0

Réponse apportée
pick column and row of an entry
X = randi(20,10); [I,J] = ind2sub(size(X),find(X>10)); The I vector has the row indices, the J vector has the column ind...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
linear regession with 3 Independent variables
It looks like you are trying to construct a linear model with 2 predictor variables and 1 response variable. In the typical line...

environ 13 ans il y a | 0

Réponse apportée
What is the comments given in this IWT code?
I think you have to inquire with the individuals that provided this code. Do you have the MathWorks Wavelet Toolbox? If so yo...

environ 13 ans il y a | 0

Réponse apportée
On which frequency i should apply DWT (wavelet transform), sampling frequency or output bandwidth
If your sampling frequency is 128 Hz, then the approximate frequency bands in the DWT are already determined by the sampling fre...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
I am taking Open MIT course. Not registered as a student at the university. How can I get MATLAB?
You have to contact MathWorks for that. <http://www.mathworks.com/company/aboutus/contact_us/>

environ 13 ans il y a | 0

Réponse apportée
How to plot with 'm' rows and 3 columns?
You only have two values here above 0.2 so it's not going to be an interesting plot, but let the matrix be A A = [0 15...

environ 13 ans il y a | 1

Réponse apportée
Downsizing of an image
If you just want to downsample the rows and columns. Assume X is your image: X = randn(512,512); X = X(1:2:end,1:...

environ 13 ans il y a | 1

Réponse apportée
plotting the density function and cumulative distribution function?
r = 10:0.01:20; FR = -(r.*(r.^2-45*r+600))/500+5; % PDF fR= (3/500)*(r-10).*(20-r); % CDF FR = -(r.*(r.^2-45*r+600)...

environ 13 ans il y a | 1

| A accepté

Réponse apportée
ones(size(data, 2), 1) , what mean??
Create a vector of ones which has the number of rows equal to the number of columns in the matrix data and 1 column So if dat...

environ 13 ans il y a | 0

Réponse apportée
if strcmp(method,'range')
Mina welcome to MATLAB! I think Azzi has some good advice. If you invest some time in reading the MATLAB documentation, you will...

environ 13 ans il y a | 1

Réponse apportée
find ar oder using aic
You can use aic() in the System Identification Toolbox. The steps: -- Create models for given AR orders using arx() -- ...

environ 13 ans il y a | 1

Réponse apportée
kvalue=zeros(size(data,1),size(data,1),size(data,2));
kvalue=zeros(size(data,1),size(data,1),size(data,2)); The above line is just initializing an array of zeros that has dimensi...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
what mean l2 norm??
The l2 norm of a vector is the square root of the sum of the absolute values squared X = randn(8,1); norm(X,2) The ab...

environ 13 ans il y a | 3

| A accepté

Réponse apportée
what mean ,hist word in matlab ?
It a frequency histogram X = randn(1000,1); hist(X) It "bins" the input data and returns the number of data values th...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
what mean normr in matlab??
That is a function in the Neural Network Toolbox that normalizes the rows of the matrix to have l2 norm. For example: X ...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Sum of a Series
A = [1 0 1 0 1 1 0 1 0 1 0]; B = A(2:end); C = sum(A(1:end-1).*(1-B));

environ 13 ans il y a | 0

Réponse apportée
filling in blank cells with nearest number
The question I'm not sure of from your post is how you want to deal with 1 NaN 0 0 NaN 1 Do you want the above to be as...

environ 13 ans il y a | 0

Réponse apportée
Does the wavelet toolbox have a function to extract the approximation filter kernels for a specified level?
I'm not sure why you are trying to use the synthesis filter here. That does not give you the equivalent filter for the scaling o...

environ 13 ans il y a | 0

Réponse apportée
Cumulative sum for a vector
x = [1,5,3,2,8]; cumsum(x) but the first element is 1, not 6 as you have indicated. Of course, if you don't want that fir...

environ 13 ans il y a | 1

| A accepté

Charger plus