Browse Source

Merge pull request #131 from rneatherway/master

Minor XML doc fixes
pull/130/merge
Christoph Ruegg 13 years ago
parent
commit
adc079de71
  1. 2
      src/FSharp/LinearAlgebra.Double.Vector.fs
  2. 2
      src/Numerics/LinearAlgebra/Generic/Matrix.cs

2
src/FSharp/LinearAlgebra.Double.Vector.fs

@ -215,7 +215,7 @@ module DenseVector =
/// Initialize a random vector with the given dimension and distribution.
let inline randomCreate (n: int) dist = DenseVector.CreateRandom(n, dist)
/// Initialize an all-zero vector with the given dimension.
/// Initialize an x-valued vector with the given dimension.
let inline create (n: int) x = DenseVector.Create(n, fun i -> x)
/// Initialize a vector by calling a construction function for every element.

2
src/Numerics/LinearAlgebra/Generic/Matrix.cs

@ -1388,7 +1388,7 @@ namespace MathNet.Numerics.LinearAlgebra.Generic
}
/// <summary>
/// Iterates throw each element in the matrix (row-wise).
/// Iterates through each element in the matrix (row-wise).
/// </summary>
/// <returns>The value at the current iteration along with its position (row, column, value).</returns>
public virtual IEnumerable<Tuple<int, int, T>> IndexedEnumerator()

Loading…
Cancel
Save