Skip to content

Commit

Permalink
IRID-196 - Basic Numerical Integration (Quadrature)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrnet committed Jan 7, 2009
1 parent c47b4dd commit 159c5a5
Show file tree
Hide file tree
Showing 10 changed files with 1,155 additions and 18 deletions.
7 changes: 6 additions & 1 deletion src/app/MathNet.Iridium/Library/IRealFunction.cs
@@ -1,6 +1,6 @@
//-----------------------------------------------------------------------
// <copyright file="IRealFunction.cs" company="Math.NET Project">
// Copyright (c) 2004-2008, Joannes Vermorel.
// Copyright (c) 2004-2009, Joannes Vermorel.
// All Right Reserved.
// </copyright>
// <author>
Expand Down Expand Up @@ -31,6 +31,11 @@

namespace MathNet.Numerics
{
/// <summary>
/// Custom function double -> double, to be replaced later with the new generic Func delegate.
/// </summary>
public delegate double CustomFunction(double parameter);

/// <summary>
/// The interface <c>IRealFunction</c> defines an interface
/// of real valued function with one real argument.
Expand Down

0 comments on commit 159c5a5

Please sign in to comment.