13 lines
154 B
C++
13 lines
154 B
C++
#include "Ln.h"
|
|
|
|
using namespace MbD;
|
|
|
|
MbD::Ln::Ln(Symsptr arg) : FunctionX(arg)
|
|
{
|
|
}
|
|
|
|
double MbD::Ln::getValue()
|
|
{
|
|
return std::log(xx->getValue());
|
|
}
|