Info

This question is closed. Reopen it to edit or answer.

i am using one year waveheight data of 2003 from jan to dec with 30 minute interval and trying to predict april month using jan,feb,march datasets using feed forward nueral networks but i am getting coefficient of regression value as 0.44

1 view (last 30 days)
[xn,xmean,xstd,yn,ymean,ystd]=prestd(x,y);
net=newff(minmax(xn),[15 1],{'tansig','purelin'},'trainlm');
[net,tr]=train(net,xn,yn);
an=sim(net,xn);
a=poststd(an,ymean,ystd);
p=new input;
q=new output;
pn=trastd(p,xmean,xstd);
on=sim(net,pn);
o=poststd(on,ymean,ystd);
[m,n,r]=postreg(o,q);
this is my code .i am getting coefficient of corelation as 0.423
  3 Comments

Answers (0)

Community Treasure Hunt

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

Start Hunting!