how to calculate Correlation coefficient 'R' value smae as displayed in my regression plot using Neural networks?

1 次查看(过去 30 天)
Hi there, would anybody like to explain me how to calculate the same "R" value as displayed in grapgh kindly see attachment.

采纳的回答

KSSV
KSSV 2018-8-28
Read about functions regression and corr2
th = linspace(0,2*pi) ;
x1 = sin(th) ;
x2 = sin(th)+rand(size(th)) ;
plotregression(x1,x2)
% Method 1
regression(x1,x2)
% MEthod 2
corr2(x1,x2)
  5 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by