摘要: 包括拉格朗日,牛顿插值,高斯,龙贝格,牛顿迭代,牛顿-科特斯,雅克比,秦九昭,幂法,高斯塞德尔 。都是经典的数学算法,希望能开托您的思路。转自kunli.info1.拉格朗日插值多项式 ,用于离散数据的拟合C/C++ code#include #include #include float lagrange(float *x,float *y,float xx,int n) /*拉格朗日插值算法*/ { int i,j; float *a,yy=0.0; /*a作为临时变量,记录拉格朗日插值多项式*/ a=(float *)malloc(n*sizeof(float... 阅读全文
posted @ 2013-11-05 01:30 needly 阅读(856) 评论(0) 推荐(0) 编辑
摘要: //适配ios7 if( ([[[UIDevicecurrentDevice] systemVersion] doubleValue]>=7.0))遍历数组[ArrayenumerateObjectsUsingBlock:^(idobj,NSUInetegeridx,BOOL*stop){NSLog(@”遍历:%@”,obj);If(idx>10){*stop=YES;}}];是否包含obj[arraycontainsObject:obj]; 阅读全文
posted @ 2013-11-05 00:58 needly 阅读(149) 评论(0) 推荐(0) 编辑
摘要: // 硬件信息[UIDevice platform];//平台[UIDevice cpuFrequency]];//cpu信息UIDevice busFrequency]];//总线[UIDevice totalMemory]];//总内存UIDevice userMemory]];//已经使用的内存//设备相关信息的获取 NSString *strName = [[UIDevice currentDevice] name]; NSLog(@"设备名称:%@", strName); NSString *strId = [[UIDevice currentDevice]... 阅读全文
posted @ 2013-11-05 00:43 needly 阅读(405) 评论(0) 推荐(0) 编辑