To whom it may concern;
Although I have spent time on the following problem, I could NOT solved it.
I am trying to approximate a function in the following structure by using feedforwardnet:
f(x1,x2)=y
where 'x1' and 'x2' are the inputs while 'y' is the output.
For this I have 'x1', 'x2' and 'y' as 1000 element vectors.
It is possible to create a net by using the following code;
newff([-1 1; -1,1],[10 1]) this returns the following net.
However since newff is obsolete I am looking for a way to do the same thing by feedforwardnet.
So could you please show me how to generate the same net by using feedforwardnet?
Yours Sincerely.