Filter löschen
Filter löschen

array [10x8]

1 Ansicht (letzte 30 Tage)
bala k
bala k am 19 Apr. 2011
G(1,:)=[ 1 2 3 8 5 6 3 5];
for j = 1:10,
for i = 1:8,
n(j,i)=G(1,8);
end
end
i need to calculate 10 rows and 8 columns, G value is = [ 1 2 3 8 5 6 3 5];
i couldn't get the G value in 10 rows.

Akzeptierte Antwort

Jan
Jan am 19 Apr. 2011
G = [ 1 2 3 8 5 6 3 5];
n = repmat(G, 10, 1)
or
n = G(ones(1, 10), :);
  2 Kommentare
bala k
bala k am 19 Apr. 2011
sir, if the G value is change in each row. how to i change the code.
Walter Roberson
Walter Roberson am 19 Apr. 2011
for j = 1:10,
for i = 1:8,
n(j,i)=G(1,i);
end
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by