Making two matrices have the same size

2 次查看(过去 30 天)
I have the following two matrices, with the following sizes:
A: 71x1
B: 14x14
How can I make them both of size
14x14?
Can we use some sort of padding with zeros for instance?
How can we go about that?
Thanks.
  1 个评论
Image Analyst
Image Analyst 2014-2-23
How you do it depends on what direction you want the 71 pixels to go (before they run out): down or across.

请先登录,再进行评论。

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-2-23
编辑:Azzi Abdelmalek 2014-2-23
A=rand(71,1) % Example
A=reshape([A;zeros(14*14-71,1)],14,14)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by