function [T, P] = householder(A)
% Formations: RA = T, where A is original matrix
% The implementation of Householder Reduction
% R is constructed as a product of elementary reflector
% T is upper tri...
分类:
其他好文 时间:
2014-11-30 23:18:18
阅读次数:
221
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; int arr[4][4]={ 1,0...
分类:
其他好文 时间:
2014-11-29 21:31:48
阅读次数:
258
效果图:工程图:此代码需要加入第三方库BECheckBox.代码:#import "RootViewController.h"//加入头文件#import "BECheckBox.h"@interface RootViewController ()@end@implementation RootVi...
分类:
其他好文 时间:
2014-11-28 11:47:50
阅读次数:
132
//
// ClickZanHelper.m
// LJECClickZan
//
// Created by xiaoyao on 14/11/26.
// Copyright (c) 2014年 lijien. All rights reserved.
//
#import "ClickZanHelper.h"
#import
@implementation ClickZanHe...
分类:
其他好文 时间:
2014-11-26 14:27:31
阅读次数:
121
#import "UINavigationBar+CustomImage.h"@implementation UINavigationBar (CustomImage)-(UIImage *)drawImage:(NSString *)imageName{ UIImage *image = [U.....
分类:
其他好文 时间:
2014-11-26 13:31:37
阅读次数:
271
#import "ZBAccountInfo.h"@interface ZBAccountInfo()@endstatic ZBAccountInfo *sharedObj = nil;@implementation ZBAccountInfo+(ZBAccountInfo *)sharedInst...
分类:
移动开发 时间:
2014-11-25 23:23:27
阅读次数:
165
template class shared_ptr;template class weak_ptr;// This class is an internal implementation detail for shared_ptr.class SharedPtrControlBlock {tem.....
分类:
其他好文 时间:
2014-11-25 23:16:19
阅读次数:
207
#import "ViewController.h"@interface ViewController (){ UILabel *dynamicLabel;}@end@implementation ViewController- (void)viewDidLoad { if (!dynamic...
分类:
移动开发 时间:
2014-11-25 15:50:38
阅读次数:
195
A. 实例对象打印-description1.当使用NSLog函数并且使用%@占位符的时候,会调用对象的-description方法2.拿到-description的返回值,显示到console中默认返回指针地址 1 @implementation Person 2 3 - (NSString *....
分类:
其他好文 时间:
2014-11-24 20:35:03
阅读次数:
224
static SurveyRunTimeData *sharedObj = nil; //第一步:静态实例,并初始化置为nil。@implementation SurveyRunTimeData+ (SurveyRunTimeData*) sharedInstance//第二步:实例构造检查静态实例...
分类:
移动开发 时间:
2014-11-24 11:30:23
阅读次数:
118