covarianceelement.java
来自「GEo 地理操作源代码」· Java 代码 · 共 58 行
JAVA
58 行
/*$************************************************************************************************ ** ** $Id: CovarianceElement.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/quality/CovarianceElement.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing.quality;// J2SE extensionsimport javax.units.Unit;/** * An element of a covariance matrix. * * @UML datatype DQ_CovarianceElement * @author ISO 19111 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version <A HREF="http://www.opengis.org/docs/03-073r1.zip">Abstract specification 2.0</A> */public interface CovarianceElement { /** * The row number of the covariance element. * * @return The row identifier. * @UML mandatory rowIndex; */ int getRowIndex(); /** * The column number of the covariance element. * * @return The column identifier. * @UML mandatory columnIndex */ int getColumnIndex(); /** * The covariance element value. * * @return The covariance. * @see CovarianceMatrix#getElement * @UML mandatory covariance */ double getCovariance(); /** * The covariance unit from the relevant ordinate. * * @return The covariance unit. * @see CovarianceMatrix#getUnit */ Unit getUnit();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?