Package stallone.datasequence

Examples of stallone.datasequence.DataArray


     * Creates an empty data sequence of fixed size
     * @return a data sequence object
     */
    public IDataSequence array(int size)
    {
        DataArray ds = new DataArray(size);
        return(ds);
    }
View Full Code Here


     * Creates an empty data sequence of fixed size
     * @return a data sequence object
     */
    public IDataSequence array(IDoubleArray[] content)
    {
        DataArray ds = new DataArray(content);
        return(ds);
    }
View Full Code Here

TOP

Related Classes of stallone.datasequence.DataArray

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.