LMSquareLossIterations: Title

Description Usage Arguments Examples

Description

Title

Usage

1
LMSquareLossIterations(X.mat, y.vec, max.iterations, step.size)

Arguments

X.mat
y.vec
max.iterations
step.size

Examples

1
2
3
4
5
6
7
8
   library(codingProject2)
   data(ozone, package = "ElemStatLearn")
   X.mat<-ozone[1:20,-1]
   y.vec<-ozone[1:20, 1]
   max.iterations <- 30
   step.size <- 0.1
   res <- LMSquareLossIterations(X.mat, y.vec, 50, 0.1)
   

mertayD/codingProject2 documentation built on May 14, 2019, 11:06 p.m.