Method | Description | |
---|---|---|
EuclideanNorm ( ICollection |
Compute the Euclidean norm of a collection of doubles
|
|
InitNormal ( IList |
Initialize a collection of doubles with values from a normal distribution
|
|
L1Norm ( ICollection |
Compute the L1 norm of a collection of doubles
|
|
ReadVector ( |
Read a collection of doubles from a TextReader object
|
|
WriteVector ( |
Write a collection of doubles to a streamwriter
|
public static EuclideanNorm ( ICollection |
||
vector | ICollection |
the vector to compute the norm for |
return | double |
public static InitNormal ( IList |
||
vector | IList |
the vector to initialize |
mean | double | the mean of the normal distribution |
stdev | double | the standard deviation of the normal distribution |
return | void |
public static L1Norm ( ICollection |
||
vector | ICollection |
the vector to compute the norm for |
return | double |
public static ReadVector ( |
||
reader | the |
|
return | IList |
public static WriteVector ( |
||
writer | a |
|
vector | ICollection |
a collection of double values |
return | void |