如何为atan制作一个功能。这将在SQLLite Query中运行。我需要acos但是我在这需要的时候得到了acos的公式。
newCos = 2 * atan(sqrt(1-pow(var,2))/(1 + var));
但是我们需要atan函数来运行这个
答案 0 :(得分:0)
您的问题有点不清楚,但似乎您知道如何编写自己的自定义SQLite函数,这意味着您的实际问题是如何编写各种三角函数。
您无需编写它们。只需使用标准数学函数即可。
#import <math.h>
double newCos = cos(someRadianAngle);
请参阅cos
,sin
,tan
,atan
等的手册页。
答案 1 :(得分:0)
sqlite的远程函数.....在SQL acos工作中可以使用这个来管理..可能有帮助
作为iPhone SDK项目的一部分,我有一个sqlite数据库,其中包含一个包含地理位置的表格,每个数据库都以度为单位存储为纬度和经度值。我希望能够在这个表上执行SQL SELECT,并且ORDER BY每行与任意点的距离。我通过定义自定义sqlite函数实现了这一点。本文包含该函数的代码以及使用它的说明。
这是函数,以及一个方便宏,可以从度数转换为弧度。这个函数是基于我发现的在线距离计算器,它利用了余弦的球面定律。
#define DEG2RAD(degrees) (degrees * 0.01745327) // degrees * pi over 180
static void distanceFunc(sqlite3_context *context, int argc, sqlite3_value **argv)
{
// check that we have four arguments (lat1, lon1, lat2, lon2)
assert(argc == 4);
// check that all four arguments are non-null
if (sqlite3_value_type(argv[0]) == SQLITE_NULL || sqlite3_value_type(argv[1]) == SQLITE_NULL || sqlite3_value_type(argv[2]) == SQLITE_NULL || sqlite3_value_type(argv[3]) == SQLITE_NULL) {
sqlite3_result_null(context);
return;
}
// get the four argument values
double lat1 = sqlite3_value_double(argv[0]);
double lon1 = sqlite3_value_double(argv[1]);
double lat2 = sqlite3_value_double(argv[2]);
double lon2 = sqlite3_value_double(argv[3]);
// convert lat1 and lat2 into radians now, to avoid doing it twice below
double lat1rad = DEG2RAD(lat1);
double lat2rad = DEG2RAD(lat2);
// apply the spherical law of cosines to our latitudes and longitudes, and set the result appropriately
// 6378.1 is the approximate radius of the earth in kilometres
sqlite3_result_double(context, acos(sin(lat1rad) * sin(lat2rad) + cos(lat1rad) * cos(lat2rad) * cos(DEG2RAD(lon2) - DEG2RAD(lon1))) * 6378.1);
}
这定义了一个SQL函数距离(Latitude1,Longitude1,Latitude2,Longitude2),它返回两点之间的距离(以千米为单位)。
要使用此功能,请将上面的代码添加到Xcode项目中,然后在调用sqlite3_open后立即添加此行:
sqlite3_create_function(sqliteDatabasePtr, "distance", 4, SQLITE_UTF8, NULL, &distanceFunc, NULL, NULL);
...其中sqliteDatabasePtr是您调用sqlite3_open返回的数据库指针。
假设你有一个名为Locations的表,其中名为Latitude和Longitude的列(两者都是double类型)包含以度为单位的值,那么您可以在SQL中使用此函数,如下所示:
SELECT * FROM Locations ORDER BY distance(Latitude, Longitude, 51.503357, -0.1199)
答案 2 :(得分:-2)
做一件事通过var1&amp; var2 to function&amp;然后在查询中使用getValue。 Xcode具有内置atan,acos功能,你只需要以弧度传递值。
float getValue=[self calculatetan:(float)var1 withSecondValue:(float)var2];
-(float)calculatetan:(float)var1 withSecondValue:(float)var2
{
newCos = 2 * atan( sqrt(1-pow(var,2))/(1+var) )// or split this
return newCos;
}