Réponse apportée
Histogram?
Are you trying this on a RGB (3D) image? or is it uint8 gray scale? Do you have the Image Processing Toolbox? I = imread...

environ 14 ans il y a | 0

Réponse apportée
will processing a fragment of a wave file result in artifacts in the frequency domain?
Again, these vectors are not equal so the DFT will not be equal. The length of the two DFTs are not equal f1=[1 2 3 4 5] ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
will processing a fragment of a wave file result in artifacts in the frequency domain?
The DFT (implemented by fft()) is an invertible operator, which means it is 1 to 1. Even though you are just considering the abs...

environ 14 ans il y a | 0

Réponse apportée
will processing a fragment of a wave file result in artifacts in the frequency domain?
You will be ok. The main issue that you will have is frequency resolution. By reducing your signal size from 1000 down to 300 sa...

environ 14 ans il y a | 0

Réponse apportée
yule walker psd
The k1 are the power estimates as a function of frequency. If you enter 10*log10(k1) You will see that those values ag...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
3-D matrices
R = randn(10,200,100); for nn = 1:100 Rxx(:,:,nn) = R(:,:,nn)*R(:,:,nn)'; end If R has complex elements, the...

environ 14 ans il y a | 0

Réponse apportée
embedding MATLAB into C++ and vice versa
Have you looked at the MATLAB documentation for this? For example: <http://www.mathworks.com/help/techdoc/matlab_external/...

environ 14 ans il y a | 0

Réponse apportée
Attempt to execute SCRIPT varargin as a function
This code says if you specify additional inputs beside the mandatory two, then assign the first to the "a" field of the structur...

environ 14 ans il y a | 0

Réponse apportée
Attempt to execute SCRIPT varargin as a function
Inside the program you have to define what is acceptable for the varargin, or you have to use with with other MATLAB functions t...

environ 14 ans il y a | 0

Réponse apportée
Attempt to execute SCRIPT varargin as a function
You want to actually pass input arguments, not use varagin as an input argument. varargin.m The person has written that func...

environ 14 ans il y a | 0

Réponse apportée
FIR filter
I have no idea what you have declared for w1, w2, and no, but I'll assume those are correct. w2 = c+(w/2); w1 = c-(w/2...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
normcdf error
Are you attempting to input a complex number into normcdf? erfc() only accepts real-valued input arguments. If you are not, p...

environ 14 ans il y a | 0

Réponse apportée
Computer Vision System Toolbox regarding
detectSURFfeatures was introduced in R2011b. You should contact MathWorks for licensing of the Computer Vision System Toolbox. ...

environ 14 ans il y a | 0

Réponse apportée
Bandpass filter from 3000 to 4000 Mhz
I'm confused by your post, which talks about MHz (megahertz), but then you cite your sampling frequency as 8000 Hz.... At any ra...

environ 14 ans il y a | 0

Réponse apportée
Struggling newbie - Iterate over a 20000X2 array, then do math and create new array
One of many ways: %just creating some data because I do not have your data X = randi([-262143 262143],2e4,2); % su...

environ 14 ans il y a | 0

Réponse apportée
Voice
If the stereo voice file is Nx2, then just extract 1 column X = randn(2e4,2); Y = X(:,1);

environ 14 ans il y a | 0

Réponse apportée
Extending a sine regression to forecast
n = (0:500)'; % create some fake data x = 1.5*cos(2*pi*(1/4)*n)+randn(size(n)); X = ones(501,3); X(:,2) = cos...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
signal processing, fft, adding two cosine waves
Then the magnitude will be 40 in this case if the frequencies and phases are the same. And there is no way to extract the 10 and...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Extending a sine regression to forecast
Once you have the parameters, which are the amplitudes of the cosines and sines, then you can easily extend your model to make p...

environ 14 ans il y a | 0

Réponse apportée
Where to buy Student Version of Matlab with 99 dollar
<http://www.mathworks.com/academia/student_version/>

environ 14 ans il y a | 0

Réponse apportée
signal processing, fft, adding two cosine waves
The main thing will be figuring out the DFT bin that the frequency of interest falls on. The frequencies are spaced at Fs/N wher...

environ 14 ans il y a | 0

Réponse apportée
use for loop
Please format your code and show your erros. What are you trying to do with your loop, just display slices of your image set? ...

environ 14 ans il y a | 0

Réponse apportée
Ask about final result in emd.m
Well, I don't know this specific application but I can tell you what the outputs of linprog() mean in general. linprog() mini...

environ 14 ans il y a | 0

Réponse apportée
How to plot data inside a for loop?
A simple way: n = 0:199; for nn = 1:length(n) plot(cos(pi/4*(n(1:nn)))); axis([1 100 -1 1]); pause(0....

environ 14 ans il y a | 0

Réponse apportée
Text properties
figure text(0.4,0.5,'\rm{File} \it{filename} \rm{is loaded}')

environ 14 ans il y a | 0

Réponse apportée
A simple LowPass Filter
Do you have the Signal Processing Toolbox? d = fdesign.lowpass('Fp,Fst,Ap,Ast',3,5,0.5,40,100); Hd = design(d,'equirip...

environ 14 ans il y a | 3

| A accepté

Réponse apportée
Help with wavelets please
This a very broad question. I think you need to tell us more about the difference between a male and female bird's singing in th...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
FFT
Then you just do t = 0:0.001:1-0.001; I = cos(2*pi*100*t); Q = sin(2*pi*100*t); sig1 = I+1j*Q; dftsig1 = fft(sig1); ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
how to calculate DWT of an image
Hi Prajakta, you want to use dwt2() or wavedec2(). However, I think you need to clarify what you mean by "for each block". A...

environ 14 ans il y a | 0

Réponse apportée
FFT
Why do you want to weight them? And by weight, do you simply mean window the signals? fft() accepts a complex-valued input wi...

environ 14 ans il y a | 0

Charger plus