Here you can find the source of getLastDateFromTimeSeriesDeltas(Double xAxisStart, List
Parameter | Description |
---|---|
xAxisStart | - |
xAxisDeltas | - |
public static Double getLastDateFromTimeSeriesDeltas(Double xAxisStart, List<Double> xAxisDeltas)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { /**//from ww w . j a va 2 s. c o m * @param xAxisStart - * @param xAxisDeltas - * @return - */ public static Double getLastDateFromTimeSeriesDeltas(Double xAxisStart, List<Double> xAxisDeltas) { Double ret = xAxisStart; for (Double delta : xAxisDeltas) { ret += delta; } return ret; } }