How to change element position in matrix?

14 ビュー (過去 30 日間)
ASHA PON
ASHA PON 2023 年 1 月 24 日
コメント済み: ASHA PON 2023 年 1 月 24 日
I am having 7*1 matrix. Now i need to generate a output matrix whose first element will be second element of matrix A and first element of matrix A will be considered as last element in output matrix.
For example:
A=[1;1;0;0;1;0;1]
Expected output:
B=[1;0;0;1;0;1;1]

採用された回答

Askic V
Askic V 2023 年 1 月 24 日
編集済み: Askic V 2023 年 1 月 24 日
Please use Matlab built in function called: circshift
for example:
A=[1;1;0;0;1;0;1]
A = 7×1
1 1 0 0 1 0 1
B = circshift(A, [-1, -1])
B = 7×1
1 0 0 1 0 1 1
  1 件のコメント
ASHA PON
ASHA PON 2023 年 1 月 24 日
Thank you this is what i needed

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by