摘要: 11.1 You are given two sorted arrays, A and B, where A has a large enough buffer at the end to hold B. Write a method to merge B into A in sorted orde... 阅读全文
posted @ 2015-10-14 23:22 Grandyang 阅读(826) 评论(0) 推荐(0) 编辑
摘要: Matlab中,我们有时候要删除矩阵中的某行某列,可以采用下列方法进行删除:a = [1 2 34 5 67 8 9];a(2,:) = []; % Delete row 2a(:,2) = []; % Delete col 2 阅读全文
posted @ 2015-10-14 04:33 Grandyang 阅读(2376) 评论(0) 推荐(0) 编辑
Fork me on GitHub