Answered
how lifting wavelet transform used to enhance the spatial resolution of the image,explain the basics for the same.
What specifically is your question here? The code you have included above will not run because you have not given us I. You'v...

13 years ago | 0

Answered
Simple MATLAB (noob) question
The way you set your x vector and then multiply by 60, you have increments of 4*pi (60*(pi/15)). Since you evaulate the cosine o...

13 years ago | 0

| accepted

Answered
conversion of matrix into vector
Is this important that you write yourself? Because there is a reshape() function x = randn(10,10); y = reshape(x,100...

13 years ago | 0

| accepted

Answered
STFT of one particular frequency
Each row in the output of spectrogram() is the information at one DFT bin as a function of the time segments. Fs = 1000; ...

13 years ago | 1

Answered
Can someone help me with symbolic differentiation?
The immediate cause of your problem is that MATLAB is case-sensitive and you want to use diff(), not Diff()

13 years ago | 0

| accepted

Answered
How to install and start bioinformatics toolbox?
This is a question better addressed to the local administrator of your university's license.

13 years ago | 0

| accepted

Answered
correlation of speech signal
Do you have the Signal Processing Toolbox? If so, you can use xcorr() I'll give you an example load mtlb; [xc,l...

13 years ago | 0

| accepted

Answered
How to generate a square periodic wave?
Perhaps I don't understand your post, but if you create the square wave as shown above, then why can't you obtain the value of t...

13 years ago | 0

Answered
replacing NaN with zeros in a cell column of strings
One way is just with a for loop: for ii = 1:length(A) if isnan(A{ii}) A{ii} = 0; end end

13 years ago | 4

Answered
I need help with Probability function.
You can't specify inequalities in a computer language like you write them down on a piece on a paper. if (C >=1 && C <= 200...

13 years ago | 1

| accepted

Answered
how to create two bell shape curves
Hi Jenka, you cannot just do sum(y), you are forgetting about the very important dx in the integral x = -10:0.01:10; y...

13 years ago | 0

Answered
syntax of handle: f = @(X)find(X);
Yes, you can use f = @find instead in this case. For example: y = zeros(10,1); y(3:end) = 3:10; f(y) The w...

13 years ago | 0

| accepted

Answered
how to create two bell shape curves
Do you have the Statistics Toolbox? x = -10:0.01:10; y = normpdf(x,0,1); y1 = normpdf(x,0,sqrt(2)); If you do n...

13 years ago | 0

| accepted

Answered
Amplitude specturm of Discrete Fourier Transform
You should read the help for fft()

13 years ago | 0

| accepted

Answered
ifft after one fft
The DFT and inverse DFT are mappings from a N-dimensional complex vector space to an N-dimensional complex vector space. When...

13 years ago | 3

| accepted

Answered
How to convert frequency spectrum to time domain waveform
If by "Then i modified/clipped/removed some signals in FFT spectrum figure file which are not required.", you mean that you remo...

13 years ago | 0

Answered
How to simply differentiate equations?
Do you have the Symbolic Toolbox? syms x t; v = cos(x)*sin(t); d2v_dx2 = diff(v,'x',2); d2v_dx2 has class sym

13 years ago | 0

| accepted

Answered
Discrete Fourier Transform a dummy approach
Yes, the only problem you have is the use of the transpose operator. The transpose operator with complex-valued data returns the...

13 years ago | 0

| accepted

Answered
Any sample to detest a sample template picture from a big picture
There are a few ways to go really. Certainly the Computer Vision System Toolbox has a number of possibilities for that: <http...

13 years ago | 1

Answered
what is framelet transform?
Because wavelet frames also have very desirable properties. For example: 1.) wavelet frames can be much more directionally s...

13 years ago | 0

| accepted

Answered
how to generate white noise of particular frequency in matlab ?
White noise cannot be of a particular frequency. White noise by definition is a sequence of uncorrelated random variables. The a...

13 years ago | 0

Answered
How to draw a density function?
This appears to be a simple discrete random variable with a probability mass function. The problem is that in that case, you can...

13 years ago | 0

Answered
Zero crossing in audio signal signal processing
I don't think this is the way to do zero crossing, but at any rate, you can use NaN in the above to do the plotting you are tryi...

13 years ago | 0

Answered
Plotting energy density spectrum as a function of angular frequency
If you just want it in terms of angular frequency (radians/sample) and not (radians/second), the frequency bins are spaced at in...

13 years ago | 0

Answered
How To Generate Non Repeating Random Numbers from 1 to 49
p = randperm(49); p = p(1:10); Or just p = randperm(49,10);

13 years ago | 5

| accepted

Answered
How do I get my code to recognise an empty function input?
isempty() should work y = input('What is your favorite color? ','s'); if isempty(y) y = input('Invalid, n...

13 years ago | 0

Answered
Can we identify a speaker using his/her cepstral coefficients calculated from MFCC?
Yes, but you'll have to implement some feature matching algorithm as well. The basic technique(s) are described in many papers. ...

13 years ago | 0

| accepted

Answered
Trying to pass/ignore an Error in a loop.
Without more detail, I don't know if this will work in your scenario, but one possibility is a try block x = randn(3,2); ...

13 years ago | 0

| accepted

Answered
The value of variance in function imnoise in case of gaussian is a bit confusing
imnoise works with an intensity image, so if you are inputting a unit8 image for example with values in the range [0,255], then ...

13 years ago | 0

| accepted

Answered
find first value below a minimum in a vectorized way
I'm sure it's not the most elegant way, but A = [ 5,6,5,2,2,6; 7,6,4,4,2,4;9,5,4,2,4,2;7,6,5,5,4,3;5,6,8,7,8,9]; [I,...

13 years ago | 0

Load more