Réponse apportée
derivative in Matlab-Symbolic Toolbox
syms x y = sin(2*pi*x); diff(y) % returns % 2*pi*cos(2*pi*x) In your example, the derivative of sin(x) with respect ...

environ 13 ans il y a | 0

Réponse apportée
I have an index vector that I have to change and I want to change the values of them
v = [1 0 0 1 1]; idx = [1 5 3]; v(idx) = 1; But that does not give exactly what you said originally because origna...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
About how to extract a speech signal's envelope
Yes, basically, although, I'm not sure why you set the amplitude equal to 0.5 For example: load mtlb; analmtlb = ...

environ 13 ans il y a | 1

Réponse apportée
How to estimate a speech sound' fundamental frequency
Often, you want to lowpass filter your speech waveform before you attempt to extract the fundamental frequency. Have you seen...

environ 13 ans il y a | 1

Réponse apportée
About how to extract a speech signal's envelope
Using the Hilbert transform is a better way to proceed than your x2 = sqrt(x.*conj(x)); The above just gives the magnitu...

environ 13 ans il y a | 1

| A accepté

Réponse apportée
can anybody post the matlab code for assigning the entire qrs wave to zero and only keeping the p and t wave
If this is just a general question about setting points in a vector to zero, once you have the boundary indices, it's easy. E...

environ 13 ans il y a | 0

Réponse apportée
How can i get the matlab coding for image decomposition using complex wavelet transform?
If you are talking about the dual tree discrete wavelet transform, then that is not currently implemented in the MathWorks' Wave...

environ 13 ans il y a | 0

Réponse apportée
How much professional version of Matlab or licensing for not student. Thanks
It is always best to contact MathWorks for this information. <http://www.mathworks.com/store/default.do?s_cid=store_top_nav>

environ 13 ans il y a | 1

Réponse apportée
Can I get previous verison of Matab/Simulink>
If it's a matter of backward compatibility, then have you checked the release notes to see what the incompatibility is and how M...

environ 13 ans il y a | 0

Réponse apportée
Comparing fft of wavefiles
yes, there are, but what are you trying to achieve. Do you know about coherence? Coherence is a frequency-domain measure of cor...

environ 13 ans il y a | 0

Réponse apportée
band pass filter design
You can design a 2D separable filter from a 1D filter, for example: b = fir1(48,[0.35 0.65]); % bandpass from 0.35pi r...

environ 13 ans il y a | 0

Réponse apportée
How I can determine the phase and magnitude between two non periodic time series?
I'm not sure what you mean by "plot the phase and magnitude in time" You can use cpsd to estimate the magnitude and phase rel...

environ 13 ans il y a | 0

Réponse apportée
band pass filter design
You will need a 2D filter if you wish to filter frames of a video. The FIR filter you get from fdesign.bandpass is only for 1-D ...

environ 13 ans il y a | 0

Réponse apportée
download link for MATLAB R2012b full version
You should contact technical support at MathWorks <http://www.mathworks.com/support/contact_us/index.html?s_cid=contact_us_su...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How to convert a vector of integers to a vector of characters?
A = [0 0 0 0 1 0 0 0 0 1]; B = num2str(A); Now B is a vector of characters

environ 13 ans il y a | 1

Réponse apportée
How can I transform data in Time-Domain from excel to Frequency-Domain by using FFT in order to get PSD?
One mistake you're making is: time = data(:,1); % sampling time Ts = time; Fs = 1/Ts; The above does not ...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How to determine peaks in a large set of data
You can use findpeaks with the available options like THRESHOLD, MINPEAKHEIGHT, and MINPEAKDISTANCE to help cut down on the "noi...

environ 13 ans il y a | 0

Réponse apportée
How can you do a baseline shift on an acceleration-time history data file?
You can then just do the following. I'll assume that X is your data in the MATLAB workspace X = 5+randn(200,1); ...

environ 13 ans il y a | 0

Réponse apportée
Setting up an array which has a 4x1 matrix in each one of it's cells
One way: X = cell(10,10); X = cellfun(@(x) zeros(4,1),X,'uni',0); Now you see with cellplot(X) that each...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Matlab coder with system objects - size of expression error
Have you tried using the following codegen command on your M-file codegen label_trace -args {logical(zeros(500,2))} -o labe...

environ 13 ans il y a | 0

Réponse apportée
Is it possible to perform wavelet analysis without the wavelet toolbox installed?
You can download and install WaveLab <http://www-stat.stanford.edu/~wavelab/> It is a free MATLAB Toolbox for wavelet and ...

environ 13 ans il y a | 1

Réponse apportée
x-labels do not show in bar3 graph
Not sure what you're trying to do and why you are using bar3() Y={2;3;2;3;4;2;3;4;2;3;4;2;3;4;5}; Y = cell2mat(Y); ...

environ 13 ans il y a | 0

Réponse apportée
Wavelet decomposition 2D help with software
In terms of soft vs. hard thresholding. Only hard thresholding would actually buy you something in terms of compression because ...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
what is vlfeat and how made available it?
Where do you see that function called in that submission. I don't happen to see that function used anywhere. What am I missing?

environ 13 ans il y a | 0

Réponse apportée
How can i select randomly Boolean number from a array ?
idx = find(A == 1); randsamp = randi(length(idx),1,1); index = idx(randsamp); % index is the linear index of the rand...

environ 13 ans il y a | 2

| A accepté

Réponse apportée
Frequency of combined waveform
There is no way to define a single frequency for this waveform. The waveform is the superposition of 2 frequencies, 0.08416 cycl...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Converting 1*4 array into 1*1
There are many ways. One way a = [1 2 3 4]; b = num2str(b); b(isspace(b)==1) = []; a = str2num(b);

environ 13 ans il y a | 0

Réponse apportée
How to plot a function like this in matlab
x = 0.1; t = -pi:.01:pi; p=0.5*(1-x^2)./((1+(x^2)-2*x*cos(t)).^(3/2)); plot(t,p) I'm guessing you really mean ...

environ 13 ans il y a | 0

Réponse apportée
mscohere function window calculation
I think you may have mistated the highest frequency. "The highest frequency is 0" Did you mean to say the lowest is 0 and the...

environ 13 ans il y a | 0

Réponse apportée
y i m getting Subscripted assignment dimension mismatch error?
I do not have trouble running this code with the following (although I get a display warning at the end) a = imread('ngc6543...

environ 13 ans il y a | 0

Charger plus