com.meliorbis.numerics.generic.primitives.DoubleSubspaceSplitIterator 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.primitives;
import com.meliorbis.numerics.generic.SubSpaceSplitIterator;
/**
* Specialisation of ISubspaceSlitIterator for primitive doubles
*
* @author Tobias Grasl
*/
public interface DoubleSubspaceSplitIterator extends DoubleSettableIndexedIterator, SubSpaceSplitIterator
{
/**
* Return type conversion
*/
DoubleSubspaceSplitIterator getOrthogonalIterator();
}