码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
java concurrency 笔记
formal specification:In computer science, formal specifications are mathematically based techniques whose purpose are to help with the implementation ...
分类:编程语言   时间:2014-12-02 22:23:30    阅读次数:158
2013计算机视觉代码合集二
Feature Detection and DescriptionGeneral Libraries:VLFeat– Implementation of various feature descriptors (including SIFT, HOG, and LBP) and covariant ...
分类:其他好文   时间:2014-12-02 22:10:05    阅读次数:327
2013计算机视觉代码合集三
Attributes and Semantic FeaturesRelative Attributes– Modified implementation of RankSVM to train Relative Attributes (ICCV 2011).Object Bank– Implemen...
分类:其他好文   时间:2014-12-02 22:08:02    阅读次数:320
viewDidLoad 和 didReceiveMemoryWarning
在我们创建一个新的.h 和 .m文件时,我们会看到.h:@implementation TestViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loadin...
分类:其他好文   时间:2014-12-02 20:42:38    阅读次数:122
根据文字动态调整 UILabel 高度
#import @interface UILabel (dynamicSize) -(float)resizeToFit; -(float)expectedHeight; @end #import "UILabel+dynamicSize.h" @implementation UILabel (dynamicSize) -(float)resizeToFit{ float ...
分类:其他好文   时间:2014-12-02 19:15:19    阅读次数:186
jdbcTemplate query 将查询到的List自动影射成实体List
Spring API Doc的说明如下: ?? RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must...
分类:数据库   时间:2014-12-01 19:34:29    阅读次数:196
iOS开发学习之#表视图#(4)填充Grouped风格的分组表
直接上代买吧: @implementation ViewController - (void)viewDidLoad { a = [NSArray arrayWithObjects:@"ant",@"alpaca",@"albatross", nil]; b = [NSArray arrayWithObjects:@"badger",@"bat",@"bear", nil]; ...
分类:移动开发   时间:2014-12-01 17:36:24    阅读次数:148
effective c++条款13-17 “以对象管理资源”之shared_ptr浅析
顾名思义,boost::shared_ptr是可以共享所有权的智能指针,首先让我们通过一个例子看看它的基本用法: #include #include #include class implementation { public: ~implementation() { std::cout <<"destroying implementation\n"; } void d...
分类:编程语言   时间:2014-12-01 16:00:11    阅读次数:163
PLU decomposition Matlab version
function [P, L, U] = plu(A) % The implementation of PLU Factorization % L is lower triangular and U is upper triangular % P is permutation matrix % Author: Zhenlin Du(Johnsondu) % Email: qlduzhlin@...
分类:其他好文   时间:2014-11-30 23:19:21    阅读次数:297
Gram Shimidt QR Factorization Matlab version
function [Q,R] = gram_schmidt_qr(A) % Formation: A = QR % The implementation of QR Factorization(classical Gram-Schmidt method) % Q is orthonormal basis for R(A) % R is an upper-triangular matrix wit...
分类:其他好文   时间:2014-11-30 23:18:22    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!