How to find the input output relation of an unknown non-linear system?

In summary, Devanand says that you can try a neural network toolbox to identify a system relation between input and output, but it may not result in a clear equation. If the samples are memory dependent, the process will be more difficult.
  • #1
dexterdev
194
1
Hi friends,
I have a system (with unknown properties) which takes an input vector of length 10 and outputs a vector with length 6.

I select Inputs vector 'I' which is a 1000x10 matrix, : 1000 samples of 10 elements. And outputs vector 'O' is a 1000x6 matrix,: 1000 samples of 6 elements.

I just want to find input output relation ie system identification.
How can I do this using neural network toolbox in matlab?

-Devanand T
 
Engineering news on Phys.org
  • #2
You can try. Depending on what your end goal is a NN may or may not help. In general what you would do is setup a NN with 10 inputs and 6 outputs. The number of intermediate layers and nodes in those layers you would have to play with to find what gives you good results. You would then divide your 1,000 samples into a training and verification set (probably something like 800/200 split) and proceed training/testing it to see if you can find a relation.

The problems you might have:

1.) If in the end you want to be able to write down some mathematical expression for the relation you aren't going to get that from the NN. What you will end up with if it works is a NN that can predict the output from inputs but how it is doing that will be "magic".

2.) If the samples are memory dependent training it will be much more difficult. Does the output vector depend only on the current input vector or do the last X input vectors also have some influence on the output? If the system does have memory you can account for this by also giving the NN the last X input vectors or some of the previous output vectors but the whole thing starts to get more convoluted.
 
  • #3
Floid said:
The problems you might have:

1.) If in the end you want to be able to write down some mathematical expression for the relation you aren't going to get that from the NN. What you will end up with if it works is a NN that can predict the output from inputs but how it is doing that will be "magic".

2.) If the samples are memory dependent training it will be much more difficult. Does the output vector depend only on the current input vector or do the last X input vectors also have some influence on the output? If the system does have memory you can account for this by also giving the NN the last X input vectors or some of the previous output vectors but the whole thing starts to get more convoluted.

Thanks for the reply first of all... Regarding problem 1) ie an output input relation equation, other than NN can you suggest some method...
And also present output depends only on present input...no memory property for the system.
 

FAQ: How to find the input output relation of an unknown non-linear system?

1. What is the process for finding the input output relation of an unknown non-linear system?

The process for finding the input output relation of an unknown non-linear system involves collecting data from the system and using mathematical methods to analyze the relationship between the input and output variables. This may include plotting the data on a graph and identifying patterns, using regression analysis techniques, or utilizing computer modeling and simulations.

2. How do I determine the best mathematical model for an unknown non-linear system?

Determining the best mathematical model for an unknown non-linear system requires careful analysis of the data and consideration of various mathematical models, such as polynomial, exponential, or logarithmic functions. The chosen model should accurately fit the data and have the least amount of error.

3. Can machine learning techniques be used to find the input output relation of an unknown non-linear system?

Yes, machine learning techniques can be used to find the input output relation of an unknown non-linear system. These techniques involve training a computer algorithm with the collected data and allowing it to make predictions about the relationship between the input and output variables. However, the accuracy of the results may depend on the quality and quantity of the data.

4. What are some common challenges when trying to find the input output relation of an unknown non-linear system?

Some common challenges when trying to find the input output relation of an unknown non-linear system include noisy data, lack of sufficient data points, and non-linear relationships that are difficult to model. Additionally, choosing the most appropriate mathematical model and accurately interpreting the results can also be challenging.

5. Are there any tools or software that can assist in finding the input output relation of an unknown non-linear system?

Yes, there are various tools and software available that can assist in finding the input output relation of an unknown non-linear system. These include statistical analysis software, programming languages such as Python or MATLAB, and specialized software for machine learning and data analysis. These tools can help with data visualization, fitting mathematical models, and making predictions about the system.

Back
Top