
MATLAB
shanshuizui
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MATLAB im2colstep
A=[1:3;4:6;7:9;10:12]A = 1 2 3 4 5 6 7 8 9 10 11 12>> B=im2colstep(A,[2 2])B = 1 4 7 2 5 8 4 7 10原创 2016-04-22 09:29:11 · 3480 阅读 · 2 评论 -
meshgrid
>> meshgrid(1:2,1:3)ans = 1 2 1 2 1 2>> meshgrid(1:3,1:2)ans = 1 2 3 1 2 3>> meshgrid(1:3,4:5)ans = 1 2 3 1原创 2016-04-22 09:35:20 · 682 阅读 · 0 评论 -
Kronecker product
If A is an m × n matrix andB is a p × q matrix, then the Kronecker productA ⊗ B is the mp × nq block matrix:more explicitly:<img class="mwe-math-fallback-image-inline tex" alt="{\mat原创 2016-04-22 09:48:14 · 2064 阅读 · 0 评论