필터 지우기
필터 지우기

create a new pattern with a string

조회 수: 1 (최근 30일)
Elysi Cochin
Elysi Cochin 2017년 10월 4일
댓글: darshana alaiya 2023년 4월 2일
i have a string pattern as below of length 24
str1 = 'AAAAAABBBBBBCCCCCCDDDDDD'
now i want to create a new pattern from the str1 with the length i give,
if i give length of new pattern as 72 answer should be
str2 = 'AAAAAABBBBBBCCCCCCDDDDDDAAAAAABBBBBBCCCCCCDDDDDDAAAAAABBBBBBCCCCCCDDDDDD'
that is it should repeat pattern in str1 upto the limit i want
if i give 84 answer should be
str3 = 'AAAAAABBBBBBCCCCCCDDDDDDAAAAAABBBBBBCCCCCCDDDDDDAAAAAABBBBBBCCCCCCDDDDDDAAAAAABBBBBB'
  댓글 수: 1
darshana alaiya
darshana alaiya 2023년 4월 2일
I want matrix with repeated pattern in 1st 3rd and 5th row.
for eg. 1 18 25 0 0 0 0 0 0
3 23 27 0 0 0 0 0 0
0 0 0 5 28 29 0 0 0
0 0 0 7 33 31 0 0 0
so on...

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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2017년 10월 4일
편집: Andrei Bobrov 2017년 10월 4일
m = 84;
[s,~,c] = unique(str1,'stable');
n = numel(c);
out = s(c(rem(0:m-1,n)+1));
or
m = 84;
k = repmat(str1,1,ceil(m/numel(str1)));
out = k(1:m);

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 10월 4일
temp = repmat(str1, ceil(Count/length(str1))) ;
str3 = temp(1:Count);
  댓글 수: 2
Walter Roberson
Walter Roberson 2017년 10월 4일
temp = repmat(str1, 1, ceil(Count/length(str1))) ;
str3 = temp(1:Count);
Andrei Bobrov
Andrei Bobrov 2017년 10월 4일
+1

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by