#import "ViewController.h"
@interface ViewController ()
@property (strong, nonatomic)UILabel *label;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do ...
分类:
移动开发 时间:
2015-04-03 15:44:37
阅读次数:
148
[问题2015S04] 设 \(A\) 为 \(n\) 阶方阵, \(C\) 为 \(k\times n\) 矩阵, 且对任意的 \(\lambda\in\mathbb{C}\), \(\begin{pmatrix}A-\lambda I_n\\ C \end{pmatrix}\) 均为列满秩阵. ...
分类:
其他好文 时间:
2015-04-03 08:02:48
阅读次数:
130
1、循环
一般格式:
for 循环控制
{ 操作 }
end
——跟常用的编程语言不同,MATLAB循环必须有end才标识着循环的结束
换言之,for和end之间的都是for循环下的操作。另外end有就近原则
②自定义函数
当然再好的函数库也不可能包含所有想要的函数,
很多时候都需要自己去抽取一些更适合解决问题的函数。
一般格式:
function 返回值列表=函数名( 参数列表)
函数体
end
需要注意的地方是:
第一、参数列表和返回值列表不用定义其类型,可直接用一...
分类:
其他好文 时间:
2015-04-03 00:20:01
阅读次数:
157
在此之前 我还用了一个别人封装的类库 用起来感觉棒棒滴,完美的抛物线,后来问题来了 不能适应各种分辨率,那么美的抛物线也是白搭…… 再后来我就只好另寻他法喽 <div?class="end">终点</div>
<img?src="####...
分类:
Web程序 时间:
2015-04-02 22:42:18
阅读次数:
206
Read:高通量测序平台产生的序列就称为reads。Contig:拼接软件基于reads之间的overlap区,拼接获得的序列称为Contig(重叠群)。Scaffold:基因组de novo测序, 通过reads拼接获得Contigs后,往往还需要构建454 Paired-end库或Illumin...
分类:
其他好文 时间:
2015-04-02 22:20:31
阅读次数:
184
删除链表中倒数第n个节点,需要考虑的细节:链表为空时,链表只有一个节点时,n=1时。/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ...
分类:
其他好文 时间:
2015-04-02 20:50:41
阅读次数:
108
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *tomImageView;@end@implementation ViewControlle...
分类:
移动开发 时间:
2015-04-02 20:38:42
阅读次数:
137
中国剩余定理/扩展欧几里得 题目大意:求一般模线性方程组的解(不满足模数两两互质) solution:对于两个方程 \[ \begin{cases} m \equiv r_1 \pmod {a_1} \\ m \equiv r_2 \pmod{a_2} \end{cases} \] 我们可以列出.....
分类:
其他好文 时间:
2015-04-02 20:32:45
阅读次数:
126
/*
* touchScroll
* param:el,evt
* evt:{start:function(){},move:function(){},end:function(){}}
*/
(function(window,document,undefined){
var hasTouch = 'ontouchstart' in window,
hasPoi...
分类:
其他好文 时间:
2015-04-02 19:01:16
阅读次数:
157
提交时出现如下问题:1 git push -u origin master2 3 Agent admitted failure to sign using the key.4 Permission denied (publickey).5 fatal: The remote end hung up ...
分类:
其他好文 时间:
2015-04-02 18:46:10
阅读次数:
172