Beantwortet
Using built in ARX function to estimate a linear ARX model for multiple input/output pairs of different size
Try creating independent iddata objects for each I/O pair. Then merge them into one "multi-experiment" iddata object. Use the mu...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Using ARX to obtain a transfer function from frequency response data
ARX is usually not a good estimator of frequency response data. Please try Output-Error (OE) model which more closely represents...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
system identification toolbox
* If you use Output-Error (OE) model structure, then the ratio of the polynomials B and F is your transfer function: TF := B(q)/...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Bode plot for an Array type input signal
Looks like you need to generate the power spectrum of the input signal and compare that to the spectrum of the output. Look in S...

mehr als 13 Jahre vor | 2

Beantwortet
AIC for ARIMA
In System Identification Toolbox, use the armax command to generate a model. Suppose x represents your time series data: z = i...

fast 14 Jahre vor | 0

Beantwortet
ARMA forecasting
Use ARMAX function in System Identification Toolbox to estimate an ARMA model, as in model = arma(data, [na nc]) In R2012a: u...

fast 14 Jahre vor | 1

Beantwortet
Problem using Hammerstein-Wiener model estimation.
The Hammerstein-Wiener model (idnlhw) contains the linear model as its component. See the "LinearModel" property of the idnlhw o...

fast 14 Jahre vor | 0

Beantwortet
Wc = gram(sys,'c') (gramian controllability)
c is just a string indicating your choice of gramian type ('c' for controllability gramian and 'o' for observability) Try: gr...

fast 14 Jahre vor | 0

Beantwortet
Z-transform of time domain data
Try this: data = iddata(x,[],Ts) % ts:= sampling time Filter = armax(data, [na nc]) % na, nc are filter design parameters...

fast 14 Jahre vor | 0

Beantwortet
time series analysis - correlation
If there is dynamic/causal dependence, you should try dynamic model fitting tools like those in System Identification Toolbox. S...

fast 14 Jahre vor | 0

Beantwortet
How to plot more points with bodeplot
You can specify the frequency vector you want as an input argument to BODE or BODEPLOT. You can also fetch the magnitude/phase e...

fast 14 Jahre vor | 0

Beantwortet
system identification
By vibration signature, do you mean the frequency responses from the two inputs to the output? Are F1 and F2 constants? Is the s...

fast 14 Jahre vor | 0

Beantwortet
system Identification using MEX C++
It seems your ODE file is returning nonfinite values of either y or dx for the current parameter values in model nlgr. To debug ...

fast 14 Jahre vor | 0

Beantwortet
bayesian information criterion
What does class(yp) reveal? If it is iddata, you would need to use yp.y(1:4018) to retrieve the predicted response data used in ...

fast 14 Jahre vor | 0

Beantwortet
Forecasting function
In R2012a, you can also use a new "FORECAST" function. See help on "idParametric/forecast".

fast 14 Jahre vor | 0

Beantwortet
pem: Adding noise model *worsens* fit?
It could be. But to isolate the issue, set 'focus' to 'simulation' in the call to PEM command since by default you are minimizin...

fast 14 Jahre vor | 0

Beantwortet
Identification of NARX problem with death time between Inputs and Outputs
Have you looked at nlarx, idnlarx functions in system identification toolbox? The input argument "nk" denotes delay from input t...

fast 14 Jahre vor | 0

Beantwortet
Need to incorporate measured plant response into model
What kind of data is it? You could try "impulseest" function in R2012a release which is an FIR estimator.

fast 14 Jahre vor | 0

Beantwortet
avoid negative step response
If you are using idproc model type, you can impose a constraint on model's gain (Kp) and zero (Tz) values to achieve this. Other...

fast 14 Jahre vor | 0

Beantwortet
Linear Coefficient from Non Linear ARX
try running the getlinmod command on it.

fast 14 Jahre vor | 0

Beantwortet
Identifying the numbers of AR or MA terms in matlab
Look into arxstruc, selstruc and n4sid's order selection feature.

fast 14 Jahre vor | 0

Beantwortet
SYstem Id doubt
That means that the model is not reliable. What orders did you try? Usually, this indicates unnecessarily high orders.

fast 14 Jahre vor | 0

Beantwortet
ARIMA models and Box-jenkins function
In R2012a, use the ARMAX function with "IntegrateNoise" attribute specified using name-value pair. See ARMAX documentation for m...

fast 14 Jahre vor | 0

Beantwortet
ARIMA Model - AR(4)AR(364) with MA(7) - too big for MATLAB - how to handle?
Try nlarx. Choose orders [0 0 0], and specify all regressors using "custom regressors". For example: model = idnlarx([0 0 0]...

fast 14 Jahre vor | 0

Beantwortet
Enforcing constraints during grey-box state space identification
In R2012a release, idgrey supports specification of parameter constraints. Look at the (new) "Structure" property of the model w...

fast 14 Jahre vor | 1

Beantwortet
System Identification - SISO -SIPO
You might need to do some homework on concepts of data fitting, static (e.g. polynomial function) vs. dynamic (e.g., transfer fu...

fast 14 Jahre vor | 0

Beantwortet
Compare error plot in command line for system id toolbox model/data object
Have you looked at RESID and PE routines? PE calculates prediction errors and allows specification of initial conditions.

fast 14 Jahre vor | 0

Beantwortet
Calculation of dead time and time constant for non linear system
Delays are not necessarily separable from system dynamics such as effect of poles and zeros on the response. However, in many ca...

fast 14 Jahre vor | 0

Beantwortet
Data import for System identifications toolbox
You will need to bring data into MATLAB workspace as double matrices first. If using System Identification GUI, you can import v...

fast 14 Jahre vor | 0

Beantwortet
grey box parameter estimation with discrete time and force data .
The model suggests it has 2 outputs and 1 input. So I guess "y" should be matrix with 2 columns.

mehr als 14 Jahre vor | 0

Mehr laden