回答済み
how to get the parameters of step response?
To elaborate on what Ryan wrote, suppose y is the vector of step response data and Ts is the sampling time. N = length(y); ...

約13年 前 | 0

回答済み
fitting a transfer function from acquired data with tfest
What do you mean by "nominator"? N or D? Note that IDTF creates transfer functions that have a monic polynomial for the denomina...

約13年 前 | 0

回答済み
How to determine the order of ARMA and AR coefficient ?
One way would be to state-space estimation which lets you inspect the Hankel singular values for model order: % pick optimal ...

約13年 前 | 0

| 採用済み

回答済み
Button Callback for System Identification Tool
yes, that should work; give it a try.

約13年 前 | 0

| 採用済み

回答済み
How to show the power spectral density of a time-domain arx model in System Identification Toolbox?
For frequency response of the model (H(w) = B(w)/A(w)), use FREQRESP or BODE command, as in: H = freqresp(m, w); or [Magnitude, ...

約13年 前 | 0

| 採用済み

回答済み
How to get the coefficients from a nlarx model constructed using System Identification Toolbox?
The coefficients of the nonlinear arx model are stored in the property called "Nonlinearity". In particular, look at m2.Nonlinea...

13年以上 前 | 0

| 採用済み

回答済み
Need help with difference equation (continuous-time system)
[y,t] = step(tf(1,[1 5 6]))

13年以上 前 | 1

| 採用済み

回答済み
observability staircase form for MIMO system
OBSV reference page has this tip: obsv is here for educational purposes and is not recommended for serious control design. Co...

13年以上 前 | 0

回答済み
Problem with System Identification Toolbox and 'sim' command
Some questions and comments: 1. What kind of nonlinear model did you create? If it was a nonlinear ARX model (idnlarx), what ...

13年以上 前 | 2

| 採用済み

回答済み
system identification procedure
Have Simulink data available in MATLAB workspace as double vectors. In the GUI (ident) import time signals to load the data. The...

13年以上 前 | 1

| 採用済み

回答済み
n-step prediction in simulink
You will need to implement a predictor model in Simulink. You can "convert" an estimated idss model into a predictor model. Supp...

13年以上 前 | 0

回答済み
lost access to tf and ss from id toolbox
It seems Control System Toolbox is not available to you anymore. What do you get when you type "ver control" in MATLAB?

13年以上 前 | 1

回答済み
Transfer functions of data
If I understood the question, you want the transfer function between input, recorded in the second column, against y which is re...

13年以上 前 | 0

回答済み
System Identification model validation failure!
What initial conditions did you use in Simulink block? The GUI estimates the initial states to maximize the fit to data. If you ...

13年以上 前 | 0

| 採用済み

回答済み
specifying state space models in SysID toolbox
See KALMAN (Control System Toolbox). It lets you compute the observer matrix K required by IDSS model form, as a function of R, ...

13年以上 前 | 0

| 採用済み

回答済み
ssest function - identification toolbox
Hi Alex, Could you post some more details? When you originally created the model object (idss(A,B,C,D)), what were the sizes ...

13年以上 前 | 0

回答済み
How to obtain State space model response ?
see LSIM

13年以上 前 | 1

回答済み
PEM grey box using merged data.
It is the latter - one combined estimation using both sets of data. If you parametrize initial states x0 (like you do in your sy...

13年以上 前 | 0

| 採用済み

回答済み
How to make transfer function if you know input/output data
Have you tried tfest? http://www.mathworks.com/help/ident/ref/tfest.html

13年以上 前 | 0

| 採用済み

回答済み
nlarx model?? how to simulate in simulink
This might be owing to initial conditions. In the GUI and in the COMPARE function, the fit is computed by *estimating* the initi...

13年以上 前 | 2

回答済み
Simplified model parameter estimation
Try the various linear and nonlinear model identification tools in the System Identification Toolbox product. There are dedicate...

13年以上 前 | 0

回答済み
Is there a function in matlab that finds a transmition function of a filter, based on the input and output signals?
See various model estimation functions in System Identification Toolbox such as pem, n4sid, oe, tfest, procest, ssest (the latte...

13年以上 前 | 0

回答済み
System Identification Tool: Using a script to load Systems to the ident tool
No, there is none. If you have saved a GUI session (.sid file) with certain systems and datasets, you can load that session by t...

13年以上 前 | 0

回答済み
Dealing with NaN in idnlgrey
Missing data cannot be directly handled by an estimation routine. You must "fix" your data appropriately in advance. Some things...

13年以上 前 | 0

回答済み
System Identification
Try estimation functions such as OE, ARX, N4SID and PEM in releases R2011b and older. In R2012a you can also try TFEST, SSEST, P...

13年以上 前 | 0

| 採用済み

回答済み
ARMA model for temperature simulation
See SIM and SIMSD functions in System Identification Toolbox. When using SIM, add the 'noise' qualifier as input argument to...

13年以上 前 | 0

回答済み
Help using structures for idss initial system
Coefficient dependence is beyond the scope of idss model structure. Use idgrey model type instead, where in you write a MATLAB f...

13年以上 前 | 0

回答済み
how to import variables in my workspace into system identification toolbox
This hsppens when the expressions you entered for input snd output variables cannot be successfully evaluated in the base worksp...

13年以上 前 | 0

回答済み
Using estimated transfer function which has estimated through tfestimate !
You need a parametric transfer function (that delivers numerator/denominator polynomials) estimator. See: http://www.mathw...

13年以上 前 | 0

回答済み
Finding the Trasfer Function !
If you have System Identification Toolbox, you could try directly estimating the transfer function (b/a) using input/output data...

13年以上 前 | 0

さらに読み込む