|
From: <in...@dn...> - 2006-01-25 02:46:33
|
Author: patrick
Date: 2006-01-24 21:46:17 -0500 (Tue, 24 Jan 2006)
New Revision: 183
Modified:
trunk/
trunk/LinearAlgebra/Decomposition/IQR.cs
trunk/LinearAlgebra/Decomposition/QR.cs
Log:
- Fixed a few small documentation errors.
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
+ NumericalLibrary.csproj.user
bin
obj
NumericalLibrary.suo
NumericalLibrary.resharper.user
_ReSharper.NumericalLibrary
Modified: trunk/LinearAlgebra/Decomposition/IQR.cs
===================================================================
--- trunk/LinearAlgebra/Decomposition/IQR.cs 2006-01-24 20:13:28 UTC (rev 182)
+++ trunk/LinearAlgebra/Decomposition/IQR.cs 2006-01-25 02:46:17 UTC (rev 183)
@@ -5,10 +5,10 @@
*/
#region Using Directives
-using System;
-using dnAnalytics.LinearAlgebra;
+
+using dnAnalytics.Exceptions;
using dnAnalytics.Math;
-using dnAnalytics.Exceptions;
+
#endregion
namespace dnAnalytics.LinearAlgebra.Decomposition
@@ -19,15 +19,15 @@
internal interface IQR : IAlgorithm
{
/// <summary>
- /// Determine whether the matrix is full rank or not
+ /// Determine whether the matrix is full rank or not.
/// </summary>
- /// <value>Boolean value indicates whether the given matrix is full rank or not</value>
+ /// <value>Boolean value indicates whether the given matrix is full rank or not.</value>
bool IsFullRank { get; }
/// <summary>
/// Returns the orthogonal Q matrix.
/// </summary>
- /// <returns>The orthogonal Q matrix</returns>
+ /// <returns>The orthogonal Q matrix.</returns>
Matrix Q();
/// <summary>
@@ -39,7 +39,7 @@
/// <summary>
/// Returns the upper triangular factor R.
/// </summary>
- /// <returns>The upper triangular factor R</returns>
+ /// <returns>The upper triangular factor R.</returns>
Matrix R();
/// <summary>
Modified: trunk/LinearAlgebra/Decomposition/QR.cs
===================================================================
--- trunk/LinearAlgebra/Decomposition/QR.cs 2006-01-24 20:13:28 UTC (rev 182)
+++ trunk/LinearAlgebra/Decomposition/QR.cs 2006-01-25 02:46:17 UTC (rev 183)
@@ -49,7 +49,7 @@
/// <summary>
/// Returns the orthogonal Q matrix.
/// </summary>
- /// <returns>The orthogonal Q matrix</returns>
+ /// <returns>The orthogonal Q matrix.</returns>
public Matrix Q()
{
return decomp.Q();
|