how to duplicate data length of a workspace ?

조회 수: 1 (최근 30일)
imene. B
imene. B 2016년 7월 21일
편집: James Tursa 2016년 7월 21일
hello all,
i have a data in workspace, for example a column of 1 2 3 4 , and i have an other data with a column with a N length, i want to have a new column that contain the 1 2 3 4 and repeat it till it arrive to N length, how to do that ?
thank you.

채택된 답변

imene. B
imene. B 2016년 7월 21일
data = evalin('base','data')
Y = evalin('base','Y')
M=length(data)/length(Y);
(assignin('base','M',M))
D=repmat(Y,M);
(assignin('base','D',D))

추가 답변 (1개)

James Tursa
James Tursa 2016년 7월 21일
편집: James Tursa 2016년 7월 21일
E.g., assuming N is divisible by 4:
result = repmat(column_vector,N/4,1);
If you have to cover cases where N is not divisible by 4, e.g.,
result = repmat(column_vector,ceil(N/4),1);
result = result(1:N);
or another way
result = column_vector(mod(0:N-1,4)+1);
If your column_vector is not really 4 elements but something else, simply replace 4 with numel(column_vector) in the above code.
  댓글 수: 1
imene. B
imene. B 2016년 7월 21일
thank you james, just in the moment that i figured it out :D

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by