b***k 发帖数: 2673 | 1 【 以下文字转载自 Computation 讨论区 】
发信人: blook (布鲁克), 信区: Computation
标 题: matlab如何生成如下矩阵?
发信站: BBS 未名空间站 (Wed Jun 1 11:49:08 2011, 美东)
sub2ind can get matrix with the following order
1 6 11 16 21
2 7 12 17 22
3 8 13 18 23
4 9 14 19 24
5 10 15 20 25
but any way to get matrix with index in the following order:
1 3 6 10 15
2 5 9 14 19
4 8 13 18 22
7 12 17 21 24
11 16 20 23 25
thanks. | e**o 发帖数: 6038 | 2 循环语句赋值呗
【在 b***k 的大作中提到】 : 【 以下文字转载自 Computation 讨论区 】 : 发信人: blook (布鲁克), 信区: Computation : 标 题: matlab如何生成如下矩阵? : 发信站: BBS 未名空间站 (Wed Jun 1 11:49:08 2011, 美东) : sub2ind can get matrix with the following order : 1 6 11 16 21 : 2 7 12 17 22 : 3 8 13 18 23 : 4 9 14 19 24 : 5 10 15 20 25
|
|