create a function that takes a vector as an input parameter and returns another vector where each component is the initial vector repeated n times.
이전 댓글 표시
create a function that takes a vector as an input parameter and returns another vector where each component is the initial vector repeated n times.
I have thought about doing the following:
function B = cyclic_shift_recursion(A,n) %n is the number of times the vector is repeated and A is the vector that I want to repeat
if n<=0
return
else
B=[A cyclic_shift_recursion(A,n-1)];
end
end
I get an error and I do not understand why, how can I correct this? Is there another easy way to do this? Thank you.
채택된 답변
추가 답변 (1개)
Geoff Hayes
2019년 3월 21일
1 개 추천
Nathali - what is the error message? What is cyclic_shift_recursion? Consider using repmat since your homework is indicating that you need to repeat each component in the initial array n times...
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!