Change column in array

Arr= [ 5 5 5 5 ; 5 5 5 5; 5 5 5 5 ; 5 5 5 5; 5 5 5 5]
how to change all elements in a column to a diffrent number?

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 9 月 27 日
編集済み: KALYAN ACHARJYA 2019 年 9 月 27 日

1 投票

Arr=[5 5 5 5 ; 5 5 5 5; 5 5 5 5 ; 5 5 5 5; 5 5 5 5];
% First column number change the 10
Arr(:,1)=10
%Do the same for others
Result:
Arr =
10 5 5 5
10 5 5 5
10 5 5 5
10 5 5 5
10 5 5 5
You can do multiple column elements change with single assignments also

カテゴリ

ヘルプ センター および File ExchangeData Types についてさらに検索

タグ

質問済み:

2019 年 9 月 27 日

編集済み:

2019 年 9 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by