Beantwortet
how I can analyze this magnitude of 1D signal
You have a real-valued signal, so you only need 1/2 your magnitudes. I can't tell from your graph if your signal has even length...

mehr als 12 Jahre vor | 0

Beantwortet
Licence for Matlab or for both Matlab and Simulink?
Simulation data inspector is part of Simulink. A license just for base MATLAB does not have Simulink included.

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how to start with image steganography using wavelet transform method in matlab
<http://www.cs.cornell.edu/topiwala/wavelets/report.html wavelet steganography>

mehr als 12 Jahre vor | 0

Beantwortet
while running d code below error is showing and can i inecrease the height of the stem.
exp() does not accept uint8 inputs. Do your data have to be uint8? Can you cast both your f and data variables to doubles? ...

mehr als 12 Jahre vor | 0

Beantwortet
How to do an nonuniform signal FFT?
You can use interp1() to interpolate the data to an evenly spaced grid, or you can use software specialized for this task: <h...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Why am I getting this error for Fspecial?
Are you sure that you are using MathWorks' version of fspecial()? If you enter >>which fspecial Do you get something ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how I can analyze this magnitude of 1D signal
If the large value shown in the figure corresponds to 0 frequency, then that simply means the signal has a nonzero DC value. The...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
see the contents of the function 'filter'
The algorithm is detailed on the reference page >>doc filter

mehr als 12 Jahre vor | 0

Beantwortet
Wavelet transform for matlab
imwrite() can save an image in .jpg format. Keep in mind JPEG2000 uses wavelet compression.

mehr als 12 Jahre vor | 0

Beantwortet
Two-side spectrum in Matlab
Youssef is correct. Why do you think that f2 will only show up as a "negative" frequency. sin() is an odd function so sin(-t)...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how can i apple fourier analyiss on vector of 736 temperature readings?
Image Analyst has given you some good advice. Since your sampling frequency is 8 samples/day, your frequency vector will run ...

mehr als 12 Jahre vor | 0

Beantwortet
How to get from discrete time impulse response vector to plot of frequency spectrum
Since you have a discrete-time sequence with data sampled at 44.1 kHz, your frequency vector will run from -22050 Hz to 22050 Hz...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Why FFT results are different from theory?
Your statement that the Fourier transform of a square wave should be purely imaginary is based on the assumption that the square...

mehr als 12 Jahre vor | 0

Beantwortet
Why FFT results are different from theory?
I'm not sure why you are saying the results are different from the theory. fft() is just an efficient implementation of the D...

mehr als 12 Jahre vor | 0

Beantwortet
How to get vector output?
Why would you expect a vector out of that equation? That equation is of the form z = f(x,y) It is producing a scalar (real...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
upgrading license server to 2013b
Hi Ron, these types of questions are always best directed to tech support: <http://www.mathworks.com/support/contact_us/index...

mehr als 12 Jahre vor | 0

Beantwortet
how can I change the view of command window in matlab R2013b
On the Home tab, go to "Preferences" in the Environment section. In preferences click on "fonts" in the left-hand pane, and t...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
something is wrong with the X_AXIS!
From the freqz() output, the filter has approximately the correct passband from about 2400 Hz to the Nyquist of 12 kHz. You know...

mehr als 12 Jahre vor | 0

Beantwortet
how can i implement band pass filter in an image?
One way is to design the filter in 1D and then use ftrans2() if you have the Image Processing Toolbox to transform the filter in...

mehr als 12 Jahre vor | 0

Beantwortet
Correlation between mother wavelet and ECG signal
The results for wavelet denoising should not be that heavily dependent on the choice of wavelet. For EEG data, I would recomm...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
what is the criteria to select the mother wavelet for analysing a signal.?
You don't want to use wavefun() in that way. Use the wavelet transform and then analyze the distribution of energy in the wavele...

mehr als 12 Jahre vor | 0

Beantwortet
Spectrogram plot without using spectrogram command
You can use imagesc(), or surf(), for example. Look at the help for spectrogram(), I realize you are not using spectrogram()...

mehr als 12 Jahre vor | 0

Beantwortet
How to Stretching and shrinking a graph
You can simply dilate the independent variable in the function x = 0:0.01:10; y = sin(x); y2 = sin(x/2); plot(...

mehr als 12 Jahre vor | 0

Beantwortet
How to choose Spectrogram parameter ?
NFFT is based on the length of the segment, not the length of the signal. Choosing the segment length is the most important para...

mehr als 12 Jahre vor | 0

Beantwortet
Calculate Sum of Square Error
You get the yhat values by plugging your observed X-values into the equation determined by your regression fit. You have an equa...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Calculate Sum of Square Error
The sum of square error in regression is the 2-norm squared of the residuals, so if yhat are your fitted values, and y are the o...

mehr als 12 Jahre vor | 0

Beantwortet
How do I transfer my PC stand-alone Matlab license to a new Mac Matlab stand-alone license?
http://www.mathworks.com/support/solutions/en/data/1-16WI3/

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
SEMILOGY not printing proper y axis labels
Without the data, it's difficult to say exactly what is going on, but can you just set the yticks? y = 0.1:0.5:24; ...

mehr als 12 Jahre vor | 0

Beantwortet
Plot histogram on matlab
You just have to save each value of C as an element of a vector. stock(1) = 675.15; delta_t = 1 / 30; volatility = 0....

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
From where can I get an audio signal file with less than 1000 samples for an audio signal processing program in matlab?
load mtlb; audiosamp = mtlb(1:999); The sampling rate is 7418 Hz. Otherwise, you can audioread() to read part of an audi...

mehr als 12 Jahre vor | 0

Mehr laden