Change all elements in 2nd column to 3
1 view (last 30 days)
Show older comments
vArr = [ 5 5 5 5; 5 5 5 5 ; 5 5 5 5; 5 5 5 5; 5 5 5 5 ]
so i have this and i knw how to change one element but how to change whole colum??
i tired this vArr( :, 3 ) - 2 but then only shows one column
1 Comment
Answers (1)
James Tursa
on 27 Sep 2019
Edited: James Tursa
on 27 Sep 2019
vArr(:,2) = _____; % <-- you fill in the blank
6 Comments
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!