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

com.xxdb.data.Matrix Maven / Gradle / Ivy

Go to download

The messaging and data conversion protocol between Java and DolphinDB server

There is a newer version: 1.0.27
Show newest version
package com.xxdb.data;

/**
 * 
 * Interface for matrix object
 *
 */

public interface Matrix extends Entity{
	boolean isNull(int row, int column);
	void setNull(int row, int column);
	Scalar getRowLabel(int row);
	Scalar getColumnLabel(int column);
	Scalar get(int row, int column);
	Vector getRowLabels();
	Vector getColumnLabels();
	boolean hasRowLabel();
	boolean hasColumnLabel();
	Class getElementClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy