com.meliorbis.numerics.generic.impl.IndexedSubSpaceOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.generic.impl;
import com.meliorbis.numerics.generic.SubSpaceSplitIterator;
/**
* An operation that works across some dimensions, successively
* performed across the orthogonal ones.
*
* @author Tobias Grasl
*
* @param The type of array this operation operates on
*/
public interface IndexedSubSpaceOperation extends IteratedOperation
{
default void initialise(SubSpaceSplitIterator orthogonal_) throws E
{
// Do nothing by default
}
}