com.qualizeal.community.Sigmoid Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sigmoid Show documentation
Show all versions of sigmoid Show documentation
A simple java library to perform sigma function on list items
The newest version!
package com.qualizeal.community;
import java.util.List;
public interface Sigmoid {
T sumOfSeries(List values);
T sumOfSquaresOfSeries(List values);
T sumOfProductsOfSeries(List... lists);
}