Objective-C 2D Interpolation
Has anyone come across an Objective-C equivalent to th开发者_如何学Ce MATLAB function interp2()? ...a 2D interpolation.
Cheers, Brett
Read Numerical Recipes in C, Chapter 3 (especially section 3.6) and you should be able to do it on your own.
Objective-C is simply a programming language. Higher-level functions such as interpolation, especially 2D interpolation, would be part of some library that you would use with Objective-C. Since Objective-C is derived from C, any suitable C library should work fine. Unfortunately, I wouldn't know which libraries to recommend.
精彩评论