Meaning of square bracket
Show older comments
Answers (1)
You probably need to do the basic MATLAB onramp tutorial, as this should be covered there. And it is free.
But this is how you can delete an element, or in this case the second row of the array x.
x = magic(4)
x(2,:) = []
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!