| 54 | QString equalEpsilonParameterNames(int parameterIndex); |
| 55 | |
| 56 | QString FunctionGroupsToString(FunctionGroups group) { |
| 57 | switch (group) { |
| 58 | case FunctionGroups::StandardMathematicalFunctions: |
| 59 | return i18n("Standard Mathematical Functions"); |
| 60 | case FunctionGroups::ComparisonFunctions: |
| 61 | return i18n("Comparison Functions"); |
| 62 | case FunctionGroups::LogicalFunctions: |
| 63 | return i18n("Logical Functions"); |
| 64 | case FunctionGroups::ColumnStatistics: |
| 65 | return i18n("Column Statistics"); |
| 66 | case FunctionGroups::MovingStatistics: |
| 67 | return i18n("Moving Statistics"); |
| 68 | case FunctionGroups::AiryFunctionsAndDerivatives: |
| 69 | return i18n("Airy Functions and Derivatives"); |
| 70 | case FunctionGroups::BesselFunctions: |
| 71 | return i18n("Bessel Functions"); |
| 72 | case FunctionGroups::ClausenFunctions: |
| 73 | return i18n("Clausen Functions"); |
| 74 | case FunctionGroups::CoulombFunctions: |
| 75 | return i18n("Coulomb Functions"); |
| 76 | case FunctionGroups::DawsonFunction: |
| 77 | return i18n("Dawson Function"); |
| 78 | case FunctionGroups::DebyeFunctions: |
| 79 | return i18n("Debye Functions"); |
| 80 | case FunctionGroups::Dilogarithm: |
| 81 | return i18n("Dilogarithm"); |
| 82 | case FunctionGroups::EllipticIntegrals: |
| 83 | return i18n("Elliptic Integrals"); |
| 84 | |
| 85 | #ifndef _MSC_VER |
| 86 | case FunctionGroups::ErrorFunctions: |
| 87 | return i18n("Error Functions and Related Functions"); |
| 88 | #else |
| 89 | case FunctionGroups::ErrorFunctions: |
| 90 | return i18n("Error Functions"); |
| 91 | #endif |
| 92 | case FunctionGroups::ExponentialFunctions: |
| 93 | return i18n("Exponential Functions"); |
| 94 | case FunctionGroups::ExponentialIntegrals: |
| 95 | return i18n("Exponential Integrals"); |
| 96 | case FunctionGroups::FermiDiracFunction: |
| 97 | return i18n("Fermi-Dirac Function"); |
| 98 | case FunctionGroups::GammaAndBetaFunctions: |
| 99 | return i18n("Gamma and Beta Functions"); |
| 100 | case FunctionGroups::GegenbauerFunctions: |
| 101 | return i18n("Gegenbauer Functions"); |
| 102 | #if (GSL_MAJOR_VERSION > 2) || (GSL_MAJOR_VERSION == 2) && (GSL_MINOR_VERSION >= 4) |
| 103 | case FunctionGroups::HermitePolynomialsAndFunctions: |
| 104 | return i18n("Hermite Polynomials and Functions"); |
| 105 | #endif |
| 106 | case FunctionGroups::HypergeometricFunctions: |
| 107 | return i18n("Hypergeometric Functions"); |
| 108 | case FunctionGroups::LaguerreFunctions: |
| 109 | return i18n("Laguerre Functions"); |
| 110 | case FunctionGroups::LambertWFunctions: |
| 111 | return i18n("Lambert W Functions"); |
| 112 | case FunctionGroups::LegendreFunctionsAndSphericalHarmonics: |
| 113 | return i18n("Legendre Functions and Spherical Harmonics"); |
no outgoing calls
no test coverage detected