Community Profile

photo

Craig

MathWorks

Last seen: 4 mois il y a Actif depuis 2011

Statistiques

All
  • Knowledgeable Level 3
  • 3 Month Streak
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Content Feed

Afficher par

A répondu
Did the Reinforcement Learning Designer get removed?
The Reinforcement Learning Designer App is a new feature in R2021a which is currently scheduled to be release soon. It looks li...

environ 3 ans il y a | 1

| A accepté

A répondu
Plotting Points On A Nyquist Curve
This would allow you to plot points on the nyquist plot for different frequencies. sys = tf(1,[1,1,1]); nyquist(sys); ...

environ 8 ans il y a | 0

| A accepté

A répondu
What does infinite phase margin mean of a transfer function and is this even practical in the real world?
A few ways to interpret an infinite phase margin is: * you can rotate your frequency response plot on the Nyquist diagram and...

plus de 8 ans il y a | 1

| A accepté

A répondu
Transfer function nyquist diagram problem
If I understand what you mean by scale/wrap. The first system has finite magnitude for all values of jw. The second system has...

plus de 9 ans il y a | 0

A répondu
Is there a way to retain data in root locus and bode plots when saving?
Currently there is not a way to retain this information when saving the root locus or bode plot. There is an open enhancement r...

plus de 9 ans il y a | 0

A répondu
Is there a way to save gain/damping/overshoot data from a root locus plot.
Currently this can not currently be done. I have created an ehancement request to consider this. You could however compute the...

presque 10 ans il y a | 0

| A accepté

A répondu
Create bode plot from state space in dB units?
The issue is setting the MagScale to log and using dB for units. Any magnitude less than one will be negative in dB and thus ca...

environ 10 ans il y a | 0

| A accepté

A répondu
Ho to plot inverse Nichols grid lines?
Looking at the code in function "nicchart" may help you. Note: "nichchart" is an undocumented helper function that generates the...

environ 10 ans il y a | 0

A répondu
How to multi-color different models in model array responses?
One option is to plot them using a loop such as: figure hold on Color = {'b','r','g','k'}; sys = rss(2,1,1,4); ...

environ 10 ans il y a | 0

A répondu
How can I get closed loop bode on LTI Viewer, while using SISO design tool?
Hi Karthik, You can add the analysis plots by going to the "Analysis Plots" tab in the "Controls and Estimation Tools Manager...

environ 10 ans il y a | 0

A répondu
ss2tf give different results depending on version of MATLAB
Over releases algorthims are updated to improve reliability and accuracy of computations. As a result answers can differ betwee...

plus de 10 ans il y a | 0

A répondu
Is it possible to automatically add all margins to a bode plot via script?
Currently there is not a documented API to provide this functionality. The MARGIN command may help you to workaround this issue....

plus de 10 ans il y a | 0

A répondu
How can I change the DEFAULT line thickness on a control systems toolbox function (rlocus, bode, step, lsim, etc..)?
Currently there is no documented programmatic way of doing this. I have created an enhancement request for this functionality. ...

presque 11 ans il y a | 0

A répondu
generating bode plot in simulink
If you have the Simulink Control Design product you can use the "linearize" command to obtain a linear model. You can then use t...

plus de 11 ans il y a | 0

| A accepté

A répondu
How to find the equivalent transfer function(poles and zeros) having the Body diagram ?
The System Identification Toolbox has functions that estimate a transfer function from freqeuncy response data. For example the ...

plus de 11 ans il y a | 0

A répondu
vector to sys transformation for bode plot
What is the dimension of the final system are you trying to get? For example, sys = tf(1,[1,1]); c = 1:10; 1...

plus de 11 ans il y a | 0

| A accepté

A répondu
How to do Control System Analysis (like Bode, ...) or get Transfer Function of Simulink Model?
The product Simulink Control Design has a command called linearize which computes a linear model (e.g. a transfer function) from...

plus de 11 ans il y a | 1

A répondu
advanced frequency domain analysis of SISO models
If you have the Optimization Toolbox you might try the function FSOVLE which is used to solve equations of the form F(x) = 0. ...

plus de 11 ans il y a | 1

| A accepté

A répondu
margin bode plot lines wrong when 'TimeUnit' not seconds
This is a bug in the drawing of the margin lines when the units are not in seconds. I have created a bug report for it. Thank...

presque 12 ans il y a | 0

| A accepté

A répondu
Line width
You can change the line width with the graphical interface using the plot edit mode. Select the line and right click and select ...

presque 12 ans il y a | 0

A répondu
State Space Models (Power System)
If I understand your question correctly Z1,Z2, Z3 are effectivly external inputs. This means you should be able to append them ...

presque 12 ans il y a | 0

A répondu
extracting values from bode()
Hi, The NY and NU sizes are based on the number IOs (inputs and outputs) your system has and would be fixed. You can compute ...

presque 12 ans il y a | 2

| A accepté

A répondu
Complex Coefficient Filter bode plot
You could try this as a workaround a = tf(1,[1,i]) % Complex tf wp = logspace(-2,2,100); % Freq vector hpos = freqresp(a,...

environ 12 ans il y a | 0

A répondu
multiple bode plots on same graph
You can create an frd object from your data and then plot it like any other LTI object. [ResponseData,Frequencies]=freqresp...

plus de 12 ans il y a | 1

A répondu
Bode diagram to Nichols curve
Hi Simon, You can create an FRD (frequency response data object) using the mag and phase information >> m = [1;2;3]; % m...

plus de 12 ans il y a | 0

A répondu
StepInfo Outputting NaN for my Transfer Function
Hi Omar, The system you specified has an integrator and is therefore unstable. This is the reason why NaN's are being returne...

plus de 12 ans il y a | 1

A répondu
Unobtainable bode plot ?
You might want to try this (j*w_n)^2 = -w_n^2 then you can rewrite the w_n^2 term.

plus de 12 ans il y a | 0

A répondu
Margin gives wrong 0db point. (the second crossing of the 0db line not the first)
Hi Max, The MARGIN command computes the mimimum phase margin, which in the code example you provided does occur for the third...

plus de 12 ans il y a | 0

A répondu
SISO Design tool in discrete time
Hi Adeyemi, In the SISO Design Tool there is an check box option on the PID tuning panel for "Design with first order derivat...

plus de 12 ans il y a | 0

A répondu
kalman function from Control System Toolbox™ missing Nu value
Hi Paulo, I ran the code you posted in MATLAB version R2008b and it ran to completion fine. The variable Nu is initialized on...

plus de 12 ans il y a | 1

| A accepté

Charger plus