Respondida
variable cost function MPC toolbox
<http://www.mathworks.com/help/toolbox/mpc/ref/mpccontroller.html MPC Controller> block can be set with optional input/output li...

casi 14 años hace | 0

Respondida
Control and Estimation Tools Manager
I am not sure what exactly is causing the confusion, so I apologize in advance if something I write is already obvious. First...

casi 14 años hace | 0

| aceptada

Respondida
Error in Evalfis
My guess is that you somehow defined a Gaussian membership function with sigma set to 0. <http://www.mathworks.com/help/toolbox...

casi 14 años hace | 0

| aceptada

Respondida
how can I simulate a PID parameter for CAD control system
You need to be more specific in what exactly you are trying to do. Here is some info on <http://www.mathworks.com/discovery/pid...

casi 14 años hace | 1

Respondida
RPM control of Motor Using PID
<http://www.mathworks.com/products/demos/control/cst_intro/ This video> may be a good start to getting answers to some of your q...

casi 14 años hace | 0

| aceptada

Respondida
How to give Initial Condition to Transfer Function
From the <http://www.mathworks.com/help/toolbox/simulink/slref/transferfcn.html doc>: Specifying Initial Conditions Initia...

casi 14 años hace | 5

| aceptada

Respondida
How to transfer stepper motor model from simulink to matlab code?:
Your Simulink model looks like a linear model, so you should be able to express it as a state-space model. To do that, you can l...

casi 14 años hace | 1

Respondida
contious time model - linear analysis toolbox
Linear Analysis Tool is part of Simulink Control Design. Here is an excerpt from the <http://www.mathworks.com/help/toolbox/s...

casi 14 años hace | 3

| aceptada

Respondida
Variable input vectors during the simulation in simulink
You can input the vector signal into the simulation simply using the <http://www.mathworks.com/help/toolbox/simulink/slref/const...

casi 14 años hace | 0

| aceptada

Respondida
system response
Your system P, as defined, is simply a gain. You can see that if you do zpk(P) ans = 5e-05 (s+0.001) --------...

casi 14 años hace | 0

| aceptada

Respondida
bode() magnitude
semilogx(wout,20*log10(squeeze(mag))) gives you the same plot for magnitude as bode. If it does not look the same, it ...

alrededor de 14 años hace | 0

Respondida
bode() magnitude
Magnitude and phase outputs of _bode_ are 3-D arrays, for representing multi-input multi-output systems. The first two dimensio...

alrededor de 14 años hace | 1

| aceptada

Respondida
LQG Control
Take a look at the <http://www.mathworks.com/help/toolbox/control/ref/lqg.html _lqg_> function, and follow the example. HTH. ...

alrededor de 14 años hace | 0

| aceptada

Respondida
How to define transfer function into the tf or ss format
sys=ss(A,B,C,0); bode(sys); nyquist(sys); HTH. Arkadiy

alrededor de 14 años hace | 0

| aceptada

Respondida
Derivative filter in laplace domain
You can do this using <http://www.mathworks.com/help/techdoc/ref/diff.html diff> command. t=[0:0.01:10]; u=sin(t); y=...

alrededor de 14 años hace | 1

| aceptada

Respondida
Simple Issue - Joint Actuator
Maybe <http://blogs.mathworks.com/seth/2012/02/01/applying-motion-to-simmechanics-models/ this> could help. Arkadiy

alrededor de 14 años hace | 0

Respondida
Real-time linearization in Simulink for nonlinear MISO system
You cannot use _linearize_ in real time. Your best bet is to linearize the model at several operating conditions offline, de...

alrededor de 14 años hace | 0

Respondida
Bode and Nyquist plots of FRF as function of operational frequency
You can simply create an frd object: sys=frd(Hxx,w); bode(sys,w); nyquist(sys,w); Another option is instead of ...

alrededor de 14 años hace | 0

| aceptada

Respondida
Using Matlab to show magnetic field of our earth
Maybe <http://www.mathworks.com/products/aerotb/demos.html?file=/products/demos/shipping/aero/astWMMContours.html this> could be...

alrededor de 14 años hace | 0

Respondida
Estimating Transfer function model for Boost Converter
In the example you mentioned the frequency sweep is performed on a Simulink model. You are correct that _frest_ and other functi...

alrededor de 14 años hace | 0

| aceptada

Respondida
Estimating impulse response function from input and output signal
I am not sure this would work for you (it seems you might be trying to write the function yourself), but you could easily do thi...

alrededor de 14 años hace | 1

| aceptada

Respondida
Lyapunov stability analysis procedure in MATLAB version 2010a
Lyapunov stability for linear models simply means that all real parts of eigenvalues are less than zero. For a linear system _sy...

alrededor de 14 años hace | 0

| aceptada

Respondida
Controlling Block Linearization
I am following the same steps, but not getting this error. I would recommend you <http://www.mathworks.com/support/service_requ...

alrededor de 14 años hace | 0

Respondida
linmod or linearize?
Please take a look here, and scroll down to the section "Linearization Using Simulink Control Design Versus Simulink". HTH. Ar...

alrededor de 14 años hace | 1

| aceptada

Respondida
PID self Tuner
PID Tuner works by linearizing your nonlinear Simulink model. If the model linearizes to zero, the PID Tuner would give you the ...

alrededor de 14 años hace | 0

| aceptada

Respondida
how come m-file and simulink generate different results with same PID controller design?
*how come there is a delay* It is not a delay. In your model you have the reference signal stepping at 1 second - default val...

alrededor de 14 años hace | 4

| aceptada

Respondida
Is there a built in function in matlab for finding gains for PID controller
Yes, <http://www.mathworks.com/help/toolbox/control/ref/pidtool.html _pidtool_> is one of the 2 functions in Control System Too...

alrededor de 14 años hace | 0

| aceptada

Respondida
MPPT Implementation
please take a look at <http://www.mathworks.com/company/events/webinars/wbnr57525.html?id=57525&p1=869881767&p2=869881785 this w...

alrededor de 14 años hace | 0

Respondida
HOW can I read data in simlink from SENSOR made in VRML, like VRPEND tutrial in matlab?
In vrpend , look under mask of "Trajectory Graph" block, open block dialog for s-function block sl3d_sfuntraj, and look at the c...

alrededor de 14 años hace | 0

Respondida
PI Controller tuning
If you have Control System Toolbox R2010b or later, you can use PID Tuner tool: >>pidtool(H) Use the slider to adjust cont...

alrededor de 14 años hace | 0

Cargar más