回答済み
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.

約8年 前 | 0

回答済み
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...

約8年 前 | 2

| 採用済み

回答済み
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'; ...

約8年 前 | 1

回答済み
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: ...

約8年 前 | 0

| 採用済み

回答済み
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)...

約8年 前 | 0

| 採用済み

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

約8年 前 | 1

回答済み
how to make a fft code for magnetics field analysis?
X = fft(x);

約8年 前 | 0

| 採用済み

回答済み
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.

約8年 前 | 0

回答済み
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 ...

約8年 前 | 1

回答済み
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...

8年以上 前 | 0

| 採用済み

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

8年以上 前 | 3

| 採用済み

回答済み
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...

8年以上 前 | 0

| 採用済み

回答済み
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);

8年以上 前 | 0

| 採用済み

回答済み
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);

8年以上 前 | 0

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

8年以上 前 | 1

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

8年以上 前 | 0

回答済み
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);

8年以上 前 | 0

回答済み
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...

8年以上 前 | 2

回答済み
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)); ...

8年以上 前 | 0

回答済み
how to generate a square wave with a fundamental frequency of 50hz?
>> doc square

8年以上 前 | 0

回答済み
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>...

8年以上 前 | 0

回答済み
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...

8年以上 前 | 0

| 採用済み

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

8年以上 前 | 0

回答済み
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...

8年以上 前 | 1

| 採用済み

回答済み
Nested if statements done elsewise?
N = 5000; x = 2*rand(N,8) - 1; u = (x<0); v = (sum(u,2)==8);

8年以上 前 | 1

| 採用済み

回答済み
Using if and then statements
function r = findQuadraticRoots(a,b,c) if something is true do some stuff; else ...

8年以上 前 | 0

回答済み
Transfer function in Simulink
H(s) = Y(s) / U(s)

約9年 前 | 0

| 採用済み

回答済み
How can I extract a single component from a Fourier decomposition of a 2D matrix and plot it as a 2D map?
Here's a start: [ M, N ] = size(PV); Fs_x = 1/dx; Fs_y = 1/dy; dF_x = Fs_x/M; dF_y = Fs_y/N; Fx = -F...

約9年 前 | 0

回答済み
plot vector where negative data is circled
isNeg = (data < 0); plot(abs(data),pos) hold on plot(abs(data(isNeg)),pos(isNeg),'o') set(gca,'xscale','log');

約9年 前 | 0

| 採用済み

さらに読み込む