Answered
How do I use a root locus to find a value of K such that the damping ratio of dominant closed loop poles is a specified value?
Click on branch of the root locus and drag along the branch. The values in the datatip, which include the damping ratio, will co...

19 days ago | 0

Answered
Plotting Fourier Series Expansion
Hi Hanif, Maybe this will help. First, the problem statement says that one period spans -1 < x <= 1 (I don't think it matter i...

19 days ago | 1

| accepted

Answered
After taking the time derivative of a symbolic expression, how do you then differentiate that new expression with respect to another variable's time derivative?
Check out functionalDerivative syms y x(t) t y = sin(x); ydot = diff(y,t) syms Dx(t) ydot(t) = subs(ydot,diff(x,t),Dx(t)) ...

22 days ago | 0

Answered
Error using append and connect
Hi Abdul, The third input to connect, which is the connection matrix, is incorrect. It should have two rows. Check the doc page...

23 days ago | 0

Answered
How to set integrator to make it reset its state to zero when the output negative and the state is negative?
Hi 耘岑, If the queue length can never be negative, how is it that the model is resulting in a negative queue length? In any cas...

23 days ago | 0

| accepted

Answered
'InitFcn' Error in Simulink
Hi Sule, If running the simulation in the base workspace using the sim command or the run button, just load the .mat file into ...

24 days ago | 0

Answered
[Simulink] 'Discrete' state-space block with stable system diverging its output while 'continuous' one doesn't.
"The outcome is that, with exactly the same [A,B,C,D] matrices, ...." The A,B,C,D matrices mean different things in the State ...

26 days ago | 0

Answered
How can I use the output value from the first simulation reactor as init value of a second reactor simulation block in Simulink?
Hi Raúl, Change the 'Initial Condition Source' in the Integrator block to 'external'. The integrator will then have another in...

26 days ago | 1

| accepted

Answered
LQI(): integrator response not as expected
Before getting to the LQI part of this, I'm curious about the approach for making an LQR regulator into a tracking system. Here...

26 days ago | 1

| accepted

Answered
Error getting characteristics from Linear Analysis Tool and PID Controller
Hi Vasiliy, Change the analysis point at the output of the plant from 'Open-Loop Output' to 'Output Measurement'

29 days ago | 1

| accepted

Answered
Assumption Ignored Symbolic PDF
I'm not aware of a way to put an assumption like that on an integral. In this problem, it seems like the actual form of f(z) do...

29 days ago | 0

| accepted

Answered
Convolution between two PDFs using product of Laplace transforms in Symbolic Toolbox
E(x) and F(x) are not valid pdfs. syms x real E(x) = 2.*(1 - 0.01)*dirac(x) + rectangularPulse(0, 300, x).*0.01./300 F(x) = ...

30 days ago | 0

Question


Why Can't int Find a Simple Integral?
syms x real E(x) = 99/50*dirac(x) + rectangularPulse(0, 300, x)/30000 int on first term yields expected result int(99/50*dira...

30 days ago | 1 answer | 0

1

answer

Answered
How does simulink use data stored in matlab as an array for each time iteration?
Hi M.I, 141 rows does not correspond to 15 sec with 0.1 step size. Perhaps it's just 14 seconds. Whether or not you need to us...

1 month ago | 0

| accepted

Answered
Surprising behavior in randsample
I don't see anything in the doc that says anything about the ordering. randsample is an .m file. The algorithm for without repla...

1 month ago | 1

| accepted

Answered
How make a high pass filter and give input to it simultaneously?
"How can i make a filter which can have a given cutoff frequency and also passes a custom made input (in the code)." Check out ...

1 month ago | 0

Answered
Rename integration variable in symbolic result
I don't know if I'd call this 'easily', but it gets the desired result (I believe). syms t m b y(t) y0 C x(t) % definitions of ...

1 month ago | 0

| accepted

Answered
Matlab - Bode plot of discrete and continuous Function
One problem is that the discretization of the product is not the product of the discretization. But with T_sample so small, tha...

1 month ago | 0

| accepted

Answered
I have a time domain signal.I want to calculate energy of my signal......
Suppose we have a continuous-time signal syms t f x(t) = exp(-abs(t/5))*sin(2*sym(pi)*2*t) This signal is noncausal and has i...

1 month ago | 0

Answered
Discrete Average on Simulink
If I understand the question correctly ..... Use a Discrete FIR Filter block to maintain a running average of 600 samples. Set ...

1 month ago | 0

Answered
InitFcn Error at Simulink
The model (likely) needs information stored in a file called bldcData.mat in order to execute, so the InitFcn callback tries to ...

1 month ago | 0

Answered
How to plot the continuous convolution result
Hi YAMENG, Have you considered computing the convolution integrals directly? Note scaling to get them all to fit on the same ...

1 month ago | 0

| accepted

Answered
Determine the Length of One Oscillation
I think this problem is supposed to be attacked like this. Define H(z) syms z H(z) = (-3*z^2 + 4*z)/(8*z^3 - 14*z^2 + 8*z - 2...

1 month ago | 1

Question


Figure Control Buttons Out of Sync in Live Script
I'm running a live script. When I hover the mouse in the figure I the home, zoom out, zoom in, pan, and save buttons become vis...

1 month ago | 1 answer | 0

1

answer

Answered
Can I use a symbol as a variable?
Hi Prasenjit, Yes, you can do that syms m f = m^2 % expression that contains m as a symbol whos m % m is sym for m = 1...

1 month ago | 0

Answered
How to plot frequency spectrum of a piecewise function in matlab?
Hi Daniel, Regarding this comment, the use of fftshift and the multiplication by dt both have to do with using the Discrete Fou...

1 month ago | 0

| accepted

Answered
I want to find the filtered signal and remove the noise from the discrete received signal from the radar and convirte it to continuos
c2d (Control System Toolbox) or c2d (System Identification Toolbox) requires the first input be a dynamic system model. As far a...

1 month ago | 1

Answered
I have an error when simulate a linear delay system with sliding mode control
Hi yousra, I'm not quite sure what the code is trying to do. However, the reason for the lsim error is pretty clear, and there'...

1 month ago | 0

| accepted

Answered
How can I use the matlab function like fcn block
Hi titor7, The reason for the error in the original model show in this comment is because Simulink didn't have enough informati...

1 month ago | 0

Answered
Can't susbsitute a variable that is defined
Do syms C1 before calling subs. syms y(t) a eqn = diff(y,t) == a*y; S = dsolve(eqn) syms C1 subs(S,C1,2)

1 month ago | 1

| accepted

Load more