YCMatrix Objective-C 矩阵库

YCMatrix 是使用 Objective-C 编写的灵活矩阵库,支持 Swift。YCMatrix 通过 Accelerate Framework 连接BLAS,LAPACK 和 vDSP 函数。

YCMatrix 支持 OS X (10.7+) 和 iOS (8.0+)。

代码示例:

@include YCMatrix;

Matrix *I = [Matrix identityOfRows:3 Columns:3];
Matrix *C = [Matrix matrixOfRows:3 Columns:3 Value:2];
Matrix *S = [I matrixByAddition:C];
NSLog(@\"Result:\\n%@\", S);

// Result:
// 3.0  2.0  2.0
// 2.0  3.0  2.0
// 2.0  2.0  3.0

© 版权声明
THE END
喜欢就支持一下吧
点赞628 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容