51 lines
1.7 KiB
C#
51 lines
1.7 KiB
C#
/*
|
|
Math.DoubleArrayOperation.cs
|
|
|
|
24 November 2009 - Adapted from old Dave codebase to generic DTS utility, with
|
|
appropriate name change.
|
|
|
|
$Log: Math.ChannelOperation.cs,v $
|
|
Revision 1.2 2007/02/05 17:17:08 Paul Hrissikopoulos
|
|
Finished installing generic channel math framework + basic calculus operations.
|
|
|
|
Revision 1.1 2007/02/02 22:34:09 Paul Hrissikopoulos
|
|
Added framework for DAVE channel math operators.
|
|
|
|
Copyright © 2007
|
|
Diversified Technical Systems, Inc.
|
|
All Rights Reserved
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DTS.Common.Utilities.Math
|
|
{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Representation of a mathematical operation to be performed
|
|
/// on <see cref="double"/> System.Collections.Generic.IList data.
|
|
/// </summary>
|
|
public abstract class DoubleListOperation : Operation<IList<double>, IList<double>>
|
|
{
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Initialize an instance of the ChannelOperation class. As a matter of
|
|
/// style, a domain is required for object creation.
|
|
/// </summary>
|
|
///
|
|
/// <param name="domain">
|
|
/// A System.Collections.Generic.IList of <see cref="double"/>s to be
|
|
/// integrated.
|
|
/// </param>
|
|
///
|
|
public DoubleListOperation(IList<double> domain)
|
|
: base(domain)
|
|
{
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
}
|