Réponse apportée
Error while using fuzzy logic controller in a simulink model
Just like the error says, there is no membership function trampf, but there is a membership function trapmf (trapezoidal members...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
How to control two values from a matrix with one PID-controller?
what do you mean when you say "control two velocities". You can have a PID controller on car speed or trailer speed that would b...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
How to use an LQT control
The function <http://www.mathworks.com/help/toolbox/control/ref/lqgtrack.html lqgtrack> from Control System Toolbox might be wh...

environ 14 ans il y a | 0

Réponse apportée
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...

environ 14 ans il y a | 0

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 1

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 5

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 1

Réponse apportée
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...

environ 14 ans il y a | 3

| A accepté

Réponse apportée
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...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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) --------...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 14 ans il y a | 0

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

plus de 14 ans il y a | 1

| A accepté

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

plus de 14 ans il y a | 0

| A accepté

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

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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=...

plus de 14 ans il y a | 1

| A accepté

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

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 0

Réponse apportée
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 ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

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

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
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 ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 4

| A accepté

Réponse apportée
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...

plus de 14 ans il y a | 0

| A accepté

Charger plus