org.jfree.data.function.Function2D Java Examples

The following examples show how to use org.jfree.data.function.Function2D. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Chart_2_DatasetUtilities_s.java    From coming with MIT License 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #2
Source File: DatasetUtilities.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #3
Source File: DatasetUtilities.java    From buffer_bci with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #4
Source File: ScatterPlotPanel.java    From snap-desktop with GNU General Public License v3.0 6 votes vote down vote up
private XYIntervalSeries computeRegressionData(double xStart, double xEnd) {
    if (scatterpointsDataset.getItemCount(0) > 1) {
        final double[] coefficients = Regression.getOLSRegression(scatterpointsDataset, 0);
        final Function2D curve = new LineFunction2D(coefficients[0], coefficients[1]);
        final XYSeries regressionData = DatasetUtilities.sampleFunction2DToSeries(curve, xStart, xEnd, 100, "regression line");
        final XYIntervalSeries xyIntervalRegression = new XYIntervalSeries(regressionData.getKey());
        for (int i = 0; i < regressionData.getItemCount(); i++) {
            XYDataItem item = regressionData.getDataItem(i);
            final double x = item.getXValue();
            final double y = item.getYValue();
            xyIntervalRegression.add(x, x, x, y, y, y);
        }
        return xyIntervalRegression;
    } else {
        Dialogs.showInformation("Unable to compute regression line.\n" +
                                        "At least 2 values are needed to compute regression coefficients.");
        return null;
    }
}
 
Example #5
Source File: DatasetUtilities.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #6
Source File: DatasetUtilities.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #7
Source File: DatasetUtilities.java    From ECG-Viewer with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #8
Source File: Chart_2_DatasetUtilities_t.java    From coming with MIT License 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #9
Source File: DatasetUtilities.java    From ccu-historian with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #10
Source File: DatasetUtilities.java    From SIMVA-SoS with Apache License 2.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #11
Source File: DatasetUtilities.java    From openstock with GNU General Public License v3.0 6 votes vote down vote up
/**
 * Creates an {@link XYSeries} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A series.
 *
 * @since 1.0.13
 */
public static XYSeries sampleFunction2DToSeries(Function2D f,
        double start, double end, int samples, Comparable seriesKey) {

    ParamChecks.nullNotPermitted(f, "f");
    ParamChecks.nullNotPermitted(seriesKey, "seriesKey");
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / (samples - 1);
    for (int i = 0; i < samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    return series;
}
 
Example #12
Source File: Cardumen_0079_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #13
Source File: DatasetUtilities.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #14
Source File: DatasetUtilitiesTest.java    From ccu-historian with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
@Test
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #15
Source File: DatasetUtilitiesTest.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
@Test
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #16
Source File: DatasetUtilitiesTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #17
Source File: DatasetUtilitiesTest.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
@Test
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #18
Source File: DatasetUtilitiesTest.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
@Test
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #19
Source File: DatasetUtilitiesTest.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Some checks for the sampleFunction2D() method.
 */
@Test
public void testSampleFunction2D() {
    Function2D f = new LineFunction2D(0, 1);
    XYDataset dataset = DatasetUtilities.sampleFunction2D(f, 0.0, 1.0, 2,
            "S1");
    assertEquals(1, dataset.getSeriesCount());
    assertEquals("S1", dataset.getSeriesKey(0));
    assertEquals(2, dataset.getItemCount(0));
    assertEquals(0.0, dataset.getXValue(0, 0), EPSILON);
    assertEquals(0.0, dataset.getYValue(0, 0), EPSILON);
    assertEquals(1.0, dataset.getXValue(0, 1), EPSILON);
    assertEquals(1.0, dataset.getYValue(0, 1), EPSILON);
}
 
Example #20
Source File: JGenProg2017_0047_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #21
Source File: JGenProg2017_0047_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #22
Source File: Cardumen_00194_s.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #23
Source File: Cardumen_00194_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #24
Source File: Cardumen_0079_t.java    From coming with MIT License 5 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a 
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series 
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, 
                                         double start, 
                                         double end, 
                                         int samples,
                                         Comparable seriesKey) {

    if (f == null) {
        throw new IllegalArgumentException("Null 'f' argument.");   
    }
    if (seriesKey == null) {
        throw new IllegalArgumentException("Null 'seriesKey' argument.");
    }
    if (start >= end) {
        throw new IllegalArgumentException("Requires 'start' < 'end'.");
    }
    if (samples < 2) {
        throw new IllegalArgumentException("Requires 'samples' > 1");
    }

    XYSeries series = new XYSeries(seriesKey);
    double step = (end - start) / samples;
    for (int i = 0; i <= samples; i++) {
        double x = start + (step * i);
        series.add(x, f.getValue(x));
    }
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;

}
 
Example #25
Source File: DatasetUtilities.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #26
Source File: DatasetUtilities.java    From buffer_bci with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #27
Source File: DatasetUtilities.java    From openstock with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #28
Source File: DatasetUtilities.java    From ccu-historian with GNU General Public License v3.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #29
Source File: DatasetUtilities.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be > 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}
 
Example #30
Source File: DatasetUtilities.java    From ECG-Viewer with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Creates an {@link XYDataset} by sampling the specified function over a
 * fixed range.
 *
 * @param f  the function (<code>null</code> not permitted).
 * @param start  the start value for the range.
 * @param end  the end value for the range.
 * @param samples  the number of sample points (must be &gt; 1).
 * @param seriesKey  the key to give the resulting series
 *                   (<code>null</code> not permitted).
 *
 * @return A dataset.
 */
public static XYDataset sampleFunction2D(Function2D f, double start,
        double end, int samples, Comparable seriesKey) {

    // defer argument checking
    XYSeries series = sampleFunction2DToSeries(f, start, end, samples,
            seriesKey);
    XYSeriesCollection collection = new XYSeriesCollection(series);
    return collection;
}