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

 Akzeptierte Antwort

TADA
TADA am 21 Aug. 2021
Bearbeitet: TADA am 21 Aug. 2021

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 21 Aug. 2021

Bearbeitet:

am 21 Aug. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by