Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119996470
Function.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 1, 04:25
Size
597 B
Mime Type
text/x-c
Expires
Thu, Jul 3, 04:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27123353
Attached To
R1695 PCSC - Numerical Integration - Ollitrault Rouaze
Function.cpp
View Options
//
// Created by Pauline Ollitrault on 28.11.16.
//
#include "Function.hpp"
//Constructors
Function::Function() {}
Function::Function(const std::string function)
{
SetFunction(function);
}
//Setters
void Function::SetFunction(const std::string function) {}
void Function::SetExactValue(const double exact_value)
{
m_exact_value = exact_value;
}
//Getters
double Function::GetExactValue() const
{
return m_exact_value;
}
//Evaluators
double Function::Evaluate(double x)
{
return 0;
}
std::vector<double> Function::EvaluateVect(std::vector<double> V)
{
return V;
}
Event Timeline
Log In to Comment