Respondida
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...

casi 14 años hace | 0

| aceptada

Respondida
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...

casi 14 años hace | 0

| aceptada

Respondida
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)/...

casi 14 años hace | 0

| aceptada

Respondida
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...

casi 14 años hace | 2

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

casi 14 años hace | 0

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

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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 ...

alrededor de 14 años hace | 0

Respondida
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 ...

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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.

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

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

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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]...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 1

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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.

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 0

Respondida
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.

más de 14 años hace | 0

Cargar más