回答済み
[Solved] How do you use rlocus with multiple feedback loops?
Start with the correct characteristic equation: 1 + D(s)*G(s)*I(s) + D(s)*G(s)*Kt = 0 (not sure why the picture shows the last...

約5年 前 | 0

回答済み
How to implement an Impulse Delay in Simulink
Not sure I've ever seen that called an "impulse delay." Doesn't matter what it's called. If Td is constant, the Transport Delay...

約5年 前 | 0

| 採用済み

回答済み
Integrate a bivariate normal distribution over y when x is fixed
One simple approach is to evaluate f(a,y) for vector of y from y1 to y2 and then use cumtrapz() or trapz() on the result.

約5年 前 | 1

| 採用済み

回答済み
How to detrend the signal?
Have you looked at doc detrend

約5年 前 | 0

回答済み
How to Solve a Second-Order Differential Equation?
>> syms x y(x) eqn2 = x*diff(y,x,2) + 2*diff(y,x) - x*y == 2*exp(x); sol = dsolve(eqn2); sol = rewrite(sol,'exp'); sol = sim...

約5年 前 | 1

| 採用済み

回答済み
Creating Symbolic state space model and transforming to canonical form?
Yes, at least in principle. For example: >> A=sym('a',3) A = [ a1_1, a1_2, a1_3] [ a2_1, a2_2, a2_3] [ a3_1, a3_2, a3...

約5年 前 | 0

| 採用済み

回答済み
Designing LQR controller error
The system might be controllable in principle, but in reality seems to be problematic for using state feedback. I had trouble ev...

約5年 前 | 0

| 採用済み

回答済み
How can I plot the transfer function? HELP Please.
Because you want to make plots, I'm going to assume that you have numerical values for each parameter in your model. For exampl...

約5年 前 | 2

| 採用済み

回答済み
How should I create a Transfer function with nth order polynomial term in denominator in simulink?
The power operator works for SISO tf and zpk objects. For example: >> h=exp(-0.2*tf('s'))*zpk([],-1,1)^5 h = ...

約5年 前 | 0

| 採用済み

回答済み
why my plot is not correct?
If you're looking for a plot with odd symmetry, try: plot(x,nthroot(x,3)) % check doc nthroot for details

約5年 前 | 1

回答済み
Display rotation matrix with s1, c1, etc. in place of sind(theta1), cosd(theta1), etc. respectively.
Use subs: >> doc subs >> syms theta1 s1 c1 >> A=[cos(theta1) sin(theta1);-sin(theta1) cos(theta1)] A = [ cos(theta1)...

約5年 前 | 0

| 採用済み

回答済み
Why is the convolution so different from the analytical answer?
When approximating the continuous convolution with a discrete convoluton, the discrete convolution needs to be multilplied by dt...

約5年 前 | 1

| 採用済み

回答済み
Plotting responses other than step responses to transfer function
Looks like an fplot() confusion issue. This code results in the expected plot: >> syms t; y(t) = ilaplace(1/s*poly2sym(T.Numera...

約5年 前 | 0

回答済み
Find the 5-point DFT of the sequence:
The code posted has a few issues. The second line is: >> u = sin(j) u = 0.0000e+00 + 1.1752e+00i >> whos u Name...

約5年 前 | 0

| 採用済み

回答済み
Cannot compute Riccati solution for LQI controller
I'm not sure it's relevant, but should the fifth row of SYS.c be all zeros? I suspect the issue is with stabilizability of the ...

約5年 前 | 0

| 採用済み

回答済み
How to solve a symbolic complex equation with real and imaginary parts?
I'm not sure what "change the paramters of the solve function" means. If a general apprach is desired, maybe something along the...

約5年 前 | 1

| 採用済み

回答済み
Problem with integrating Sin to Cos
If you just want ode in terms of cos() >> ode = int(sin(n*x),x,0,pi/2) ode = (2*sin((pi*n)/4)^2)/n >> rewrite(ode,'...

約5年 前 | 0

回答済み
Simbolic simplification of trigonometric functions
How about this: >> simplify(f,500) ans = -(sin(x)*(- sin(x)^2 - c)^(1/2)*(sin(x)^2 - 1)^2)/(2*d^2)

約5年 前 | 1

| 採用済み

回答済み
How to generate correlated samples from a single distribution? Each sample should be correlated with the previous.
I don't think the questionn is well posed. The question and the code make it sound like there is a single distribution and the s...

約5年 前 | 0

回答済み
how can i use symsum to make function with a variable apart from syms k?
This code works for the specified sequences. It would need to be modified if either x[n] or y[n] take on non-zero values for n <...

約5年 前 | 0

回答済み
Problems with the controllability matrix.
ctrb() in the Control System Toolbox only accepts numeric inputs. If you have numeric values for the variables, you can substit...

約5年 前 | 0

| 採用済み

回答済み
Making a transformation matrix in matrix format
You're not getting 4, 1 x 4 matrices. It just looks like that because of the formatting to the diplay. >> syms th d alph l A...

約5年 前 | 0

| 採用済み

回答済み
How to shift state space models by equilibrium points using ss and lsim?
The states, inputs, and outputs of Sys are all perturbations from the equilibrium solution. The intiial condition to lsim (x0) w...

約5年 前 | 1

| 採用済み

回答済み
Differntial equations and Initial conditions
The initial conditions are set to represent the initial conditions of the system to be simulated. What other considerations migh...

約5年 前 | 0

| 採用済み

回答済み
Matlab Code for DTFT to get frequency response
n, h, and w are all defined as row vectors and the * operator is trying to do matrix multiplication. But what you really want i...

5年以上 前 | 0

回答済み
Help with simplifying a complex symbolic expression
This code eliminates U_j0: [num,den]=numden(term1); newnum = combine(num,'log','IgnoreAnalyticConstraints',true); newterm1 = ...

5年以上 前 | 0

| 採用済み

回答済み
Laplace Transform for ODE - RC Circuit
I think that last subs command is getting confused because q is defined as the solution of the ode. I'm not sure why that's a pr...

5年以上 前 | 1

| 採用済み

回答済み
Fourier Transformation of dirac comb
There is one too many points in the signal y. If you plot([y y]) and zoom in you'll see the pulse at sample 1001 immediately ...

5年以上 前 | 1

| 採用済み

回答済み
Convert s in j*ω in a transfer function
No need to change anything in sys. It is a tf object and either freqresp() or bode() can evaluate sys at s = j*w doc freqresp ...

5年以上 前 | 1

| 採用済み

回答済み
How to find DTFT of given sequence in matlab
Assuming that y(n) = 0 for abs(n) > 5, there are are only three values of n for which y(n) is non-zero. Put those values of n an...

5年以上 前 | 0

さらに読み込む