Hello!
As I am not advanced user of Matlab, maybe this is a stupid question for you.
Basically I have 6 experiments; each experiment has 9 parameters (x1,x2…x9) and one output value (Y).
Experiment matrix is following:
# x1 x2 x3 x4 x5 x6 x7 x8 x9 Y
1
2
3
4
5
6
All x parameters and Y parameter are experimental, and I want to use neural networks to build a relationship between all x and Y (e.g. formula that would consist of all x parameters, which would bring to Y parameter as close as possible.) And build a code, so that when I enter new x values, it would predict Y value.
I would appreciate any tips, how to get it done.
Thanks and best regards, Vitaly

댓글 수: 1

Greg Heath
Greg Heath 2013년 11월 6일
Please look up the definitions of variable and parameter.

댓글을 달려면 로그인하십시오.

 채택된 답변

Greg Heath
Greg Heath 2013년 11월 6일
편집: Greg Heath 2013년 11월 7일

0 개 추천

[ I N ] = size(input) % [ 9 6 ]
[ O N ] = size (target) % [ 1 6 ]
Neq = prod(size(target)) % No. of EQUATIONS = N*O = 6
% For a NN with I-H-O node topology, the No. of UNKNOWNS (weights and biases) is % Nw = (I+1)*H+(H+1)*O = I*H input layer weights, H*O output layer weights and H+O biases % Nw < Neq when H <= Hub where
Hub = -1 + ceil( (Neq-O)/(I+O+1) )% = 0 (A Linear model)
% However, for a linear NN with I-O node topology, the No. of UNKNOWNS (weights and biases) is % Nw = (I+1)*O % I*O = 9 weights + O = 1 bias = 10 > Neq = 6 equations (underdetermined system)
% For a robust design Neq >> Nw (a VERY over determined system) is desired. Therefore, consider
1. Much more data
2. Fewer input variables ( e.g., help/doc STEPWISEFIT)
3. BACKSLASH or PINV for an undetermined linear system
3. Regularization (e.g., help/doc TRAINBR) .
help fitnet
doc fitnet
Search Newsgroup and Answers
greg fitnet
Hope this helps
Thank you for officially accepting my answer
Greg

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2013년 11월 6일

편집:

2013년 11월 7일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by