C# 클래스 Regression, buffer_bci

파일 보기 프로젝트 열기: jadref/buffer_bci 1 사용 예제들

공개 메소드들

메소드 설명
LinearRegression ( double xVals, double yVals, int inclusiveStart, int exclusiveEnd, double &rsquared, double &yintercept, double &slope ) : void

메소드 상세

LinearRegression() 공개 정적인 메소드

public static LinearRegression ( double xVals, double yVals, int inclusiveStart, int exclusiveEnd, double &rsquared, double &yintercept, double &slope ) : void
xVals double The x-axis values.
yVals double The y-axis values.
inclusiveStart int The inclusive inclusiveStart index.
exclusiveEnd int The exclusive exclusiveEnd index.
rsquared double The r^2 value of the line.
yintercept double The y-intercept value of the line (i.e. y = ax + b, yintercept is b).
slope double The slop of the line (i.e. y = ax + b, slope is a).
리턴 void