Path: blob/master/Help/guide/importing-exporting/MathFunctionsComponents/SquareRoot/SquareRoot.cxx
5018 views
#include "SquareRoot.h"
#include <cmath>
namespace MathFunctions {
double sqrt(double x)
{
return std::sqrt(x);
}
}
#include "SquareRoot.h"
#include <cmath>
namespace MathFunctions {
double sqrt(double x)
{
return std::sqrt(x);
}
}