All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.meliorbis.numerics.generic.SubSpaceSplitIterator Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
package com.meliorbis.numerics.generic;

public interface SubSpaceSplitIterator extends SettableIndexedIterator {
	
	/**
	 * An iterator that iterates orthogonally to this one, i.e.
	 * along the dimensions this one does not iterate over
	 * 
	 * @return The iterator described
	 */
	SubSpaceSplitIterator getOrthogonalIterator();
	
	/**
	 * Gets the index of the current position over the full
	 * space
	 * 
	 * @return The index in the full space
	 */
	int[] getFullIndex();

	/**
	 * Gets the current position of the part of the index not being iterated over
	 * 
	 * @return The value of the index in the dimensions not being iterated by this iterator (orthogonal dimensions!)
	 */
	public int[] getOtherIndex();
	
	
	/**
	 * Gets the sizes of the dimensions this iterator iterates over
	 * 
	 * @return The sizes of the subspace
	 */
	int[] getSizes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy