필터 지우기
필터 지우기

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