how to replicate the array?

8 次查看(过去 30 天)
Muhammad
Muhammad 2021-8-21
编辑: TADA 2021-8-21
i have an array
a = 1 2 3
4 5 6
7 8 9
now i want
a= 1 1 2 3 3
1 1 2 3 3
4 4 5 6 6
7 7 8 9 9
7 7 8 9 9
what command do it
as padarray pad the desire number arround the martix

采纳的回答

TADA
TADA 2021-8-21
编辑:TADA 2021-8-21
a = [1, 2, 3; 4, 5, 6; 7, 8, 9];
b = a([1, 1, 2, 3, 3], [1, 1, 2, 3, 3])
b = 5×5
1 1 2 3 3 1 1 2 3 3 4 4 5 6 6 7 7 8 9 9 7 7 8 9 9
c = padarray(a, [1, 1], 'replicate', 'both')
c = 5×5
1 1 2 3 3 1 1 2 3 3 4 4 5 6 6 7 7 8 9 9 7 7 8 9 9

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by