Rick Rosson
MathWorks
Followers: 0 Following: 0
Software, modeling, and simulation engineer. Former Senior Applications Engineer at MathWorks. Professional interests include: digital signal processing, statistical signal processing, control system design, dynamic system modeling and simulation, data analysis and visualization.
Estadística
CLASIFICACIÓN
92
of 295.448
REPUTACIÓN
1.557
CONTRIBUCIONES
1 Pregunta
593 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
333
CLASIFICACIÓN
2.146 of 20.227
REPUTACIÓN
820
EVALUACIÓN MEDIA
3.40
CONTRIBUCIONES
2 Archivos
DESCARGAS
13
ALL TIME DESCARGAS
7518
CLASIFICACIÓN
3.173
of 153.872
CONTRIBUCIONES
0 Problemas
102 Soluciones
PUNTUACIÓN
1.070
NÚMERO DE INSIGNIAS
3
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Enviada
SimEvents: Operations Research Library
Add-on library for SimEvents® that provides blocks for modeling operations research systems.
alrededor de 8 años hace | 10 descargas |
Enviada
RGB Image Decomposition
Displays RGB decomposition of a full color image
alrededor de 8 años hace | 3 descargas |
Why 8 segments for pwelch?
The use of 8 as the default value for the number of segments is purely arbitrary. It is a perfectly reasonable value, but it is...
más de 8 años hace | 1
| aceptada
optical fourier transform by free space propagation and lens
I am not exactly sure what the source of the problem is, but I have a few suggestions to help you diagnose the root cause: Fi...
más de 8 años hace | 0
Why are the colors in my figures wrong?
Please see <http://www.mathworks.com/matlabcentral/answers/276579-changing-the-histogram-edge-color-from-the-default-green-gradi...
más de 8 años hace | 1
Inserting C Code in Simulink block
double multiplicador(double u) { return 2.0*u; }
más de 8 años hace | 0
| aceptada
Determine transfer function from block diagram
Please try: H = feedback(series(Gc,G11)+G12*Z0,1); where |Z0| is the Laplace Transform of the disturbance signal |z0(t)...
más de 8 años hace | 1
| aceptada
How to plot the spectrum of the sum of sine waves
x_fft = abs(fft(x)/noSamples); xn_fft = abs(fft(xn)/noSamples);
más de 8 años hace | 0
Spectrogram - How to divide signal ?
The third input argument of |spectrogram| expects the number of samples to overlap each window, not the number of segments. Ple...
más de 8 años hace | 2
| aceptada
Command to reshape matrix diagonally
Y = [ X(1:end/2,:) X(end/2+1:end,:) ];
más de 8 años hace | 0
how to genrate random signal
N = 1024; x = rand(N,1); figure; plot(x);
más de 8 años hace | 1
| aceptada
Diesel Work Cycle using MATLAB to plot P-v Diagram, Calculate work output, and Plot the work output when diameter of the piston is changed
Here's a start: theta = (0:0.1:359.9)'; D = 15; L = 12; L_TDC = 1.5; V_TDC = (pi/4)*D^2*L_TDC;
más de 8 años hace | 0
Changing the histogram edge color from the default green gradient.
The problem is with the renderer. Please try the following: opengl software and then re-plotting.
más de 8 años hace | 3
| aceptada
How come the frequency vector starts at 0 for even length FFT ?
Regardless of whether |L| is even or odd, the first element of the vector returned by |fft| is _always_ the DC component. No mat...
más de 8 años hace | 6
| aceptada
How to Calculate FFT
<http://en.m.wikipedia.org/wiki/Cooley%E2%80%93Tukey_FFT_algorithm Cooley-Tukey Algorithm>
más de 8 años hace | 0
How do I create this transfer function in matlab, compensator_lag=(0.9987s+33.96)/(s+0.343)?
See: <http://www.mathworks.com/help/control/ref/tf.html Transfer Function>
más de 8 años hace | 0
| aceptada
Please, is there any beamforming toolbox in MATLAB ?
Yes, <http://www.mathworks.com/products/phased-array/ Phased Array System Toolbox>
más de 8 años hace | 1
How to stop a loop when the wrong values are entered
% Height in feet: H = 0; while H <= 0 H = input('Enter a value greater than 0 for height in feet '); end
más de 8 años hace | 2
| aceptada
Why my mel filters do not overlap on each other?
I think the problem is in the second |elseif| statement: elseif (k>=f_range(m+1) && k<=f_range(m)) These two sub-condit...
más de 8 años hace | 1
| aceptada
how to create output that is column vector
Logical Indexing: * <http://blogs.mathworks.com/loren/2013/02/20/logical-indexing-multiple-conditions/ Loren's blog post> * ...
más de 8 años hace | 0
Why I get the wrong peak from bode plot?
The function |getPeakGain| returns the peak gain on an absolute scale, whereas the Bode plot displays the gain on a decibel scal...
más de 8 años hace | 0
| aceptada
Why my mel filters do not overlap on each other?
Please review the <http://www.mathworks.com/help/signal/ref/tripuls.html tripuls> function.
más de 8 años hace | 0
Compute the fft of the record of my voice
N = length(data); Fs = 8000; dt = 1/Fs; t = dt*(0:N-1)'; figure; plot(t,data);
más de 8 años hace | 0
what toolkit should i get to implement modulation techniques?
* MATLAB * Simulink * Signal Processing Toolbox * DSP System Toolbox * Communications System Toolbox
más de 8 años hace | 0
Hi. How can i add 20% Gaussian noise to some fixed value vector.
m = [ 1.05 ; 0.2561 ; 0.3321 ]; s = 0.2 * m ; N = 1000; x = ones(N,1) * m' + randn(N,3) * diag(s);
más de 8 años hace | 0
| aceptada
IF statement restarting when condition is true
k = []; while isempty(k) d=input('Is this spur gear mounted between two bearing? (Y/N): ','s'); k = fin...
más de 8 años hace | 0
| aceptada
can any one describe the algorithm of power spectral estimation using different window techiniques
Please review: <https://en.m.wikipedia.org/wiki/Welch%2527s_method Welch's Method>
más de 8 años hace | 0
Simulate a time series of stock price using Monte-Carlo simulations
Here is some code to get you started: N = 10000; P = nan(N,1); P(1) = ... for k = 2:N P(k) = P(k-1...
más de 8 años hace | 0
| aceptada
Need help finding a moving average
n = 100; b = ones(1,n)/n; a = 1; absorbance_MA = filter(b,a,absorbance_co2blcorr);
más de 8 años hace | 0
| aceptada