Réponse apportée
curves are incorrect. Fourier Series.
I would recommend using the |fft| function.

presque 12 ans il y a | 0

Réponse apportée
generating aperodic impulse train or triangular pulse or rectangular pulse
doc rectpuls doc tripuls doc pulstran

presque 12 ans il y a | 0

Réponse apportée
HELP how to solve this error code : Error using .* Matrix dimensions must agree.
What are the results of: size(Y0fft) size(PhaseY0_shift) They need to be the same size and shape to use the |.*|...

presque 12 ans il y a | 0

Réponse apportée
Creating an array of given size and increment
How about the following? xStart = 5; dx = 0.001; N = 2000; x = xStart + (0:N-1)*dx; Is that what you are ...

presque 12 ans il y a | 9

| A accepté

Réponse apportée
Need some suggestion on creating a presentation?
Please review this video: <http://www.mathworks.com/videos/publishing-matlab-code-from-the-editor-69016.html Publishing> ...

presque 12 ans il y a | 0

Réponse apportée
Matrix dimensions must agree.
doc dbstop doc dbcont doc dbquit doc dbstep

presque 12 ans il y a | 1

Réponse apportée
Calculate angles between two intersecting lines using the slopes
phi = atan(m1) - atan(m2);

presque 12 ans il y a | 0

Réponse apportée
Using coder to convert audioread which needs to read only wav file to mex c file?
doc coder.extrinsic

presque 12 ans il y a | 0

| A accepté

Réponse apportée
how to do the fourier transform
doc sin doc fft doc fftshift doc abs doc plot

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to calculate spatial frequencies in fft2 of an image
<http://www.mathworks.com/matlabcentral/answers/13896-fftshift-of-an-image Similar question with accepted answer>

presque 12 ans il y a | 0

Réponse apportée
Can the marker size be set by units of coordinates?
doc patch

presque 12 ans il y a | 0

Réponse apportée
How to install DSP toolbox on existing MATLABversion7(R2008b)
The DSP System Toolbox was introduced in R2011a. It is not available for R2008b. You can install the Signal Processing Blockse...

presque 12 ans il y a | 0

Réponse apportée
can i run a matlab script for specific number of times automatically
Yes, use a |for| loop

presque 12 ans il y a | 0

Réponse apportée
How to obtain the Fourier transform of a filtered signal?
N = length(x); X = fftshift(fft(x))/N; figure; plot(abs(X));

presque 12 ans il y a | 0

Réponse apportée
Read a data set and bin it to different groups.
A = [ List of numbers ]; x = floor(A/1000); T1 = A( x == 2004 ); T2 = ... ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Questions about FFT (and applying it to determine power spectral density)
These questions have been asked and answered dozens of times already. Please search MATLAB Answers for |fourier| and/or |fft|.

presque 12 ans il y a | 0

Réponse apportée
how can i implement transfer function in embedded matlab block?
doc coder.extrinsic

presque 12 ans il y a | 0

Réponse apportée
How to combine two successive SimEvents entities?
<http://www.mathworks.com/matlabcentral/fileexchange/29754-simevents--operations-research-library Operations Research Library>

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Modelling a RC circuit
The circuit is not time-invariant. Yet you are applying techniques, such as the DFT, that apply only to time-invariant systems....

presque 12 ans il y a | 0

Réponse apportée
Butterworth filter and normalised frequency
Wn = 2*wn*Ts;

presque 12 ans il y a | 0

Réponse apportée
Can I use Optimization Toolbox 7.0(R2014a) with Matlab R2012a?
No.

presque 12 ans il y a | 0

Réponse apportée
How to reset a signal to zero after certain intervals in simulink?
The integrator block provides an option to allow you to reset the state variable using an external trigger signal. Please revie...

presque 12 ans il y a | 0

Réponse apportée
Fixed Point to Floating Point
>> doc fi >> doc numerictype >> doc fimath >> doc cast >> doc isfi

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Converting a signal to baseband after resampling
Nz = length(z); Nv = length(v); r = Nz/Nv; dt_old = t(2) - t(1); dt_new = dt_old/r; t_old = t; ...

environ 12 ans il y a | 0

Réponse apportée
FFT to represent Aliasing Problem
fc = f; df = fs/Ns; f = -fs/2:df:fs/2-df; plot(f,abs(xdft);

environ 12 ans il y a | 0

| A accepté

Réponse apportée
Computing the mean over 3 numbers in a vector
... = mean(A(i:i+2));

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Problem with frequency axis during Fourier Transform of Gaussian Pulse
A few minor tweaks: t = 0:dt:2e-9-dt; df = fs/nfft; f = -fs/2:df:fs/2-df;

plus de 12 ans il y a | 0

Réponse apportée
How does tilde remove NaN's from dataset?
Is this what you are trying to do? C = isnan(B); A = B(~C);

plus de 12 ans il y a | 0

Réponse apportée
Need help on a Question producing a sequence
Here's a start: N = 500; x = nan(N+1,1); x(1) = ... k = 1; while ... if ... ...

plus de 12 ans il y a | 0

Charger plus