How to copy columns in a matrix.

4 ビュー (過去 30 日間)
sreesoumya cheppalli
sreesoumya cheppalli 2020 年 2 月 16 日
Suppose I have a matrix of 13*13 and I would like to copy column 1 of this matrix to column 2 of the same matrix , how can I carry out this copying operation?
Thank you in advance.

回答 (1 件)

Bhaskar R
Bhaskar R 2020 年 2 月 16 日
編集済み: Bhaskar R 2020 年 2 月 16 日
1)
res = circshift(mat, [0 -1]); % mat assumed as your matrix
2)
mat = [zeros(size(mat, 1),1), mat] % Append zeros as first column,
  1 件のコメント
sreesoumya cheppalli
sreesoumya cheppalli 2020 年 2 月 17 日
Thank you for the answer, but I would like to copy the elements of first column to the second without any changes in the first column (both the columns belong to same matrix) . I don't want to create a new matrix.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by