Respondida
how would i invert a negative part of complex signal
x = 3+4i; y = x';

alrededor de 8 años hace | 0

Respondida
How to extract phase information from freqs?
Instead of atand(imag(H)./real(H)) please try using angle(H)*180/pi

alrededor de 8 años hace | 1

| aceptada

Respondida
how to convert file.m into block in Simulink ?
Have you tried using the MATLAB Function block? It's in the User Defined Functions sub-library in base Simulink.

alrededor de 8 años hace | 0

Respondida
Compute cumulative sum of a singal for a certain period of time (moving sum)
You can use a <http://www.mathworks.com/help/simulink/slref/discretefirfilter.html Discrete FIR Filter> with coefficients of |on...

alrededor de 8 años hace | 2

| aceptada

Respondida
How to find location of points used to calculate width of peaks using findpeaks function?
Although not ideal, here is a workaround that might help: ax = gca; lines = ax.Children; x = lines(1).XData'; ...

alrededor de 8 años hace | 1

Respondida
Fourier transform, Position to Jerk differentiation
|fftshift| does *not* compute the Fourier Transform. You need to use the |fft| function in conjunction with |fftshift|, as: ...

alrededor de 8 años hace | 0

| aceptada

Respondida
Computing and Ploting Fourier transform
Fs = 8; dt = 1/Fs; N = 8000; t = dt*(-N/2:N/2-1)'; dF = Fs/N; f = -Fs/2:dF:Fs/2-dF; p = heaviside(t+1)...

alrededor de 8 años hace | 0

| aceptada

Respondida
I want to create a GUI with two sets of radio buttons, one edit and a pushbutton to continue. I cant isolate the two sets of radio buttons into two differente groups so they wont interact with eachother. only one option can be selected at a time each
Please include the button group's handle |bg| or |bg2| as the first argument that you pass to |uncontrol| function for each ra...

alrededor de 8 años hace | 0

Respondida
High quality spectrogram with a few seconds signal
Please try the following: % Window duration (in seconds): dur = 0.5; % Spectrogram settings (in samples): wi...

alrededor de 8 años hace | 1

Respondida
how to make a fft code for magnetics field analysis?
X = fft(x);

alrededor de 8 años hace | 0

| aceptada

Respondida
Why is there a time difference in tic toc in multiple runs
Because |tic toc| measures _elapsed_ time rather than _cpu_ time. Try using |profile| instead.

alrededor de 8 años hace | 0

Respondida
FFT result looks nothing like analytic result
steps = 2^10; lim = 4; dx = 2*lim/steps; x = -lim:dx:lim-dx; % x = linspace(-lim, lim, steps); Fs = 1/dx; dF ...

más de 8 años hace | 1

Respondida
How to replicate a hexagon pattern in a given area of 100x100
function draw_pattern r = 2; dx = r; dy = r*sin(pi/3); figure; axes; hold...

más de 8 años hace | 0

| aceptada

Respondida
Help plotting FFT from column vector with real and imaginary parts.
N = length(data); freq = fftshift(fft(data))/N; plot(abs(freq));

más de 8 años hace | 3

| aceptada

Respondida
How to generate 100 sample points of a 3-state Markov chain with initial prob vector and transition probability matrix using inverse transform method on matlab.
Here's a start: P = [0.3 0.1 0.1; 0.3 0.9 0.1; 0.4 0 0.8]; % Transition Matrix P0 = [0.1 0.9 0]; %initial probability...

más de 8 años hace | 0

| aceptada

Respondida
How can I replace every element of a matrix with a special character to hide the element
x = magic(3); y = repmat('*',size(x)); disp(y);

más de 8 años hace | 0

| aceptada

Respondida
How can I replace every element of a matrix with a special character to hide the element
x = magic(3); x(x<7) = NaN; disp(x);

más de 8 años hace | 0

Respondida
how can find frequency from an fft function?
Fs = 40; % samples per second N = length(Y1); % samples dF = Fs/N; % h...

más de 8 años hace | 1

Respondida
Unable to obtain 50 Hertz sine wave in Simulink
Please try zooming in using the horizontally-constrained zoom tool.

más de 8 años hace | 0

Respondida
How to plot the frequency response of a discrete cosine function?
L = 1000; n = 0:L-1; x1 = fftshift(fft(x))/L; dw = 2*pi/L; w = -pi:dw:pi-dw; stem(w,mag);

más de 8 años hace | 0

Respondida
I have fft data. How can I predict from the fft data whether the data is of sine or cosine wave?
You can tell from the phase. If the phase is 0 degrees, then it's a cosine. If the phase is -90 degrees, then it's a sine. If...

más de 8 años hace | 2

Respondida
FFT plot of velocity
Please try the following experiment: Fs = 48000; dt = 1/Fs; t = (0:dt:0.25-dt)'; A = 5; x = A*ones(size(t)); ...

más de 8 años hace | 0

Respondida
how to generate a square wave with a fundamental frequency of 50hz?
>> doc square

más de 8 años hace | 0

Respondida
FFT plot of velocity
Please review: <http://www.mathworks.com/matlabcentral/answers/15770-scaling-the-fft-and-the-ifft Scaling the FFT and the IFFT>...

más de 8 años hace | 0

Resuelto


Your favourite city!
Type your favourite city.

más de 8 años hace

Resuelto


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

más de 8 años hace

Resuelto


Sum the squares of numbers from 1 to n
For a given value of n return the sum of square of numbers from 1 to n. Example For n = 2 then sum of squares = 5 (1^2 + ...

más de 8 años hace

Respondida
How to design a notch filter that stops the 2 kHz ,with sampling rate 8 kHz,and plot the magnitude response,also plot pole zero locations ?
Here's a start: Fs = 8000; % samples per second Fc = 2000; % hertz phi = 2*pi*Fc/Fs; % radians...

más de 8 años hace | 0

| aceptada

Respondida
What am I doing wrong in my code? Trying to detect if array has NaN.
if any(isnan(x))

más de 8 años hace | 0

Respondida
Two mass damper spring system in simulink
You can represent each mass as a series combination of an integrator and a gain. The value of the gain will be either |M| or |1...

más de 8 años hace | 1

| aceptada

Cargar más