Error in circularshift inside for loop.

Hi,
I need your help
I get this error message
In an assignment A(I) = B, the number of elements in B and I must be the same
when execute this code:
x=[2 3 4 5 6 7 8 9 1]
for i=1:6
b(i)=circshift(x,[0,i])
end
Thanks..

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 9 月 22 日

0 投票

circshift() like that is going to return a vector. You are trying to store the vector into the single location b(i) .
You can create rows (or columns) of a 2D array, or you can use cell arrays.

2 件のコメント

methaq ali
methaq ali 2018 年 9 月 23 日
thank you for replay, pleace can you give example.
Walter Roberson
Walter Roberson 2018 年 9 月 23 日
x=[2 3 4 5 6 7 8 9 1]
for i=1:6
b(i, :)=circshift(x,[0,i])
end

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2018 年 9 月 22 日

コメント済み:

2018 年 9 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by