photo

Carla

MathWorks

Last seen: 15 Tage vor Aktiv seit 2011

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

0 Fragen
11 Antworten

Cody

0 Probleme
25 Lösungen

RANG
1.669
of 300.392

REPUTATION
42

BEITRÄGE
0 Fragen
11 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
9

RANG
 of 20.934

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
19.502
of 168.373

BEITRÄGE
0 Probleme
25 Lösungen

PUNKTESTAND
272

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Revival Level 1
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Promoter
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Why do AnalysisPoints change the results of systune optimization?
Hello there. The addition of analysis points does not change the system dynamics, but it does change the underlying LFT model. ...

etwa 6 Jahre vor | 1

| akzeptiert

Beantwortet
Why do state space and its equivalent transfer function models yield different step responses?
Hi there, Examine the state-space model sys_ss: >> sys_ss Note that it has a non-unity E matrix. This happens becaus...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Error simple program PID
Is there a reason you need to do this with syms? At least in the code you showed, it doesn't look like you are using any Symbol...

fast 12 Jahre vor | 0

Beantwortet
How can I use 'name' to specify input/output pairs between two systems connected in an LFT arrangement?
If I understand what you want to do, you can assign values to the InputName and OutputName properties of your state-space models...

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
Getting bode plot for a circuit in Simulink
Looking at your screenshot of the Linear Analysis tool, it appears that you trying to obtain a linear model using the Model I/Os...

fast 12 Jahre vor | 0

Beantwortet
How do I specify which toolbox a function should be used from?
MATLAB determines which freqresp to use based upon what type of input you give it. The first argument to the Control System Too...

fast 12 Jahre vor | 1

| akzeptiert

Beantwortet
Matlab, Simulink, which block?
Perhaps what you want is the Gain block, with the gain value set to 0.5. This takes an input and multiplies it by 0.5, to outpu...

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
Does the bode function automatically converts the vector points into decibels?
The *bode* function of Control System Toolbox will plot the frequency response of a transfer function in dB. The function can a...

etwa 12 Jahre vor | 1

Beantwortet
Why can't I find the number 1.7?
It's because your computer can't store decimal numbers in an exact form - there is always small but finite roundoff error in flo...

etwa 12 Jahre vor | 1

Beantwortet
>> R1=1; L=10e-3; C1=10e-6; R2=10; A=[-R1/L -1/L;1/C1 -1/(R2*C1)]; B=[1/L;0]; C=[0 1]; D=[0]; step(A,B,C,D),grid >> bode(A,B,C,D),grid ??? Error using ==> lti.bode at 95 Plots must be of the same type and size to be superimposed. Error in ==> bode a
I do not get the error you see. Do you have a hold in between the step command and the bode command that you did not show here?...

etwa 12 Jahre vor | 1

| akzeptiert

Beantwortet
How can I convert a system with delay from continuous to discrete and from discrete to continuous and the result be the same?
When discretizing a model with a sampling time not commensurate with your time delay, you can use c2dOptions to tell c2d to appr...

mehr als 14 Jahre vor | 4