Effacer les filtres
Effacer les filtres

Change column in array

16 vues (au cours des 30 derniers jours)
nty huy
nty huy le 27 Sep 2019
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?

Réponses (1)

KALYAN ACHARJYA
KALYAN ACHARJYA le 27 Sep 2019
Modifié(e) : KALYAN ACHARJYA le 27 Sep 2019
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

Catégories

En savoir plus sur Modeling dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by