/** * Copyright (C) 2011 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.math; /** * Simple enum useful in telling tensor functions which axis you would like to operate on */ public enum Axis { /** * The first axis */ X, /** * The second axis */ Y, /** * The third axis */ Z }