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

plus de 13 ans il y a | 0

| A accepté

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

plus de 13 ans il y a | 0

| A accepté

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

plus de 13 ans il y a | 0

| A accepté

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

plus de 13 ans il y a | 2

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

plus de 13 ans il y a | 0

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

presque 14 ans il y a | 1

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

Réponse apportée
Forecasting function
In R2012a, you can also use a new "FORECAST" function. See help on "idParametric/forecast".

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

Réponse apportée
Linear Coefficient from Non Linear ARX
try running the getlinmod command on it.

presque 14 ans il y a | 0

Réponse apportée
Identifying the numbers of AR or MA terms in matlab
Look into arxstruc, selstruc and n4sid's order selection feature.

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 1

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

presque 14 ans il y a | 0

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

plus de 14 ans il y a | 0

Charger plus