Réponse apportée
why am i getting the error "Incorrect number or types of inputs or outputs for function step."
Hi Salim Your code runs fine here. What version of Matlab are you using? I just changed the code to make separate plots intead...

environ 2 ans il y a | 0

Réponse apportée
ifft convert frequency domain to time domain
Hi Angie, The input to ifft should cover all frequencies from 0 to Fs - df, where df is the frequency step. In this case, max(f...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
How to automatically reinitialize the model workspace when Run Simulink model
Hi Steven, Model workspaces can be manipulated programatically In your workflow, create a model workspace object and use reloa...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Symbolic expressions with pi are displaying as decimals
Hi Nathaniel. Option 1: Always use sym(pi); in symbolic expressions. For example 5.13445677*sym(pi) If you use the numeric ...

environ 2 ans il y a | 1

Réponse apportée
Why does augw(P, W1, W2, W3) give a much lower order generalized plant when compared to the by hand construction?
Hi Vinh, The 'by-hand' construction is nearly certainly not what augw actually does. You can look at the augw code; maybe it wi...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
How to use freqz to plot the frequency response from neg frequency to pos frequency
Use the third argument to freqz to specify the desired frequency points: f_sampling = 40e3; % sampling frquency f_pass = 10e3;...

environ 2 ans il y a | 0

Réponse apportée
Need help substituting vector variables into symbolic expression
syms x y Option 1. Use a symbolic function z(x,y) = x + y z([1 2],[100 200]) Option 2. Symbolic expression, subs with a cell...

environ 2 ans il y a | 0

Réponse apportée
Discrete Derivative block (Simulink) behaves differently than expected
Hi John, How did you get the yellow colors on the rate transition blocks on the signals coming out of those? If you turned on ...

environ 2 ans il y a | 0

Réponse apportée
Matlab is not giving the correct z transform of - (n*a^n)*u[- n - 1];
In addition to what @VBBV said about a typo in the defintion of y[n], there are two other fundamental problem that needs to be a...

environ 2 ans il y a | 2

Réponse apportée
Fourier transform of derivative expression with respect to time
Hi Erikan, I'm not clear what you're asking about how j*w should be calculated. It's just part of the expression. If you're as...

environ 2 ans il y a | 0

Réponse apportée
What's the difference between two command?
That's the old, obsolete form of nyquist() that was used for state space models before the Control System Toolbox introduced lti...

environ 2 ans il y a | 2

Discussion


What is the Distinction Between Answers and Discussions?
I just now discovered Discussions. Can anyone provide insight into the intended difference between Discussions and Answers and ...

environ 2 ans il y a | 2

Question


What is the Distinction Between Answers and Discussions?
I just now discovered Discussions. Can anyone provide insight into the intended difference between Discussions and Answers and ...

environ 2 ans il y a | 3 réponses | 2

3

réponses

Réponse apportée
Given an LTI system with corresponding transfer matrix K(s), is there an easy way to specify K(w) where w=s+delta?
Hi Vinh, I think the substitution backward. It should go like this: K(s) = C * inv(s*I - A) * B + D w = s + delta -> s = w ...

environ 2 ans il y a | 0

Réponse apportée
designfilt error in loop
In this messsage "Error in designfilt (line 189)," the "line 189" is refering to the line number in designfilt, not your code. ...

environ 2 ans il y a | 0

Réponse apportée
Convert Quaternion to Euler angle extrinsically
Hi Frank, According to a comment in this answer, there appears to be no function in any toolbox that works with extrinsic Euler...

environ 2 ans il y a | 0

Réponse apportée
Why the Hilbert transform is not correct using the hilbert function in Matlab?
I think the issue is that the assertion that the "Hilbert transform of cos is sin" is not correct for this problem. According to...

environ 2 ans il y a | 0

Réponse apportée
How to do a Biquad (SOS) filtering
Hi Jay, I think it works like this if you want to cascade the filters together into a single, sos filter. %% Filter_1 h = fde...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Kalman filter for input estimation
The steady-state Kalman filter as implemented by kalman requires that the augmented realization be detectable, as opposed to mi...

environ 2 ans il y a | 0

Réponse apportée
Discrete z to convert z^-1
z = zpk('z',-1); H = 0.0004773 * (z+0.9544)/ (z-0.9591) / (z-0.9064) H.Variable = 'z^-1'

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Multiple Bandpass Filter Creation
fs = 16e3; %range = [50 8000]; CF1=linspace(50, 8000, 32) -50; CF2=linspace(50, 8000, 32) +50; Can't use the first and las...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
Calculus Variational; code for finding the value of two constants for 2 values of the variable
Boundary conditions can be specified in the call to dsolve syms x(t) f = diff(x,t)^2+10*t*x eqn = functionalDerivative(f,x) ...

environ 2 ans il y a | 2

Réponse apportée
Pole Placement Techniques Part 2
Hi MUHAMMAD, See some comments interspersed with the code below. clc; clear Here, we define the sysem in original form. % (1...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Structured H infinity synthesis can't find a controller that makes closed loop stable even with an asymptotically stable plant?
Hi Vinh, I'll say up front that I don't have a complete solution to your problem, but I have an observation that I'm pretty sur...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
Regarding Pole Placement Techniques
A = [0 -83.33; 500 -10]; B = [166.67; 0]; C = [0 1]; D = 0; %Create state-space and convert to transfer function sys = ss(A...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
phase jumps in dtft
n=-20:20; w=-2.5*pi:.01:2.5*pi; x1=zeros(size(n)); x1(n>=-2 & n<=2)=1; % x1(19:23)=1; Matlab doesn't have a function dtft. ...

environ 2 ans il y a | 0

Réponse apportée
How can I add two fft functions?
Hi Anagha A=1; t=0:0.001:0.1; Here, the sampling frquency is 1000 Hz ... but the frequency of x is 1046 Hz. Assuming x shoul...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Comparing Analog Butterworth vs Bessel Filters shows large differences in coefficients and filtered data.
Hi Xavier, For "an analog Butterworth" filter, the code would be (butter) % All frequency values are in Hz. Fs = 20000; % Sa...

environ 2 ans il y a | 0

| A accepté

Question


Why Does Format of Data Returned from readtable() Depend on Import Options that are Not VariableTypes?
Here is the file type text1.csv When read without options, the table output is as expected. t1 = readtable('text1.csv') But ...

environ 2 ans il y a | 2 réponses | 1

2

réponses

Réponse apportée
Apply Filter to Signal
I think this is the correct way to generate the output signal fs = 16e3; t = 0:(1/fs):1; % not defined in question numFilts=...

environ 2 ans il y a | 1

| A accepté

Charger plus