Files
solver/OndselSolver/FunctionFromData.h

26 lines
868 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "FunctionXcParameter.h"
namespace MbD {
class FunctionFromData : public FunctionXcParameter
{
//xvalue xs ys
public:
FunctionFromData() = default;
FunctionFromData(Symsptr arg);
double xvalue;
std::shared_ptr<std::vector<double>> xs, ys;
};
}